Redis on steroids: Autocomplete using Redis, Nginx and Lua
cucumbertown.com
Redis on steroids: Autocomplete using Redis, Nginx and Lua
1–10 of 12 posts
Re: Redis on steroids: Autocomplete using Redis, Nginx and Lua
#2Update: this looks like a good article describing a verification scheme http://www.stavros.io/posts/writing-an-nginx-authentication-...
Re: Redis on steroids: Autocomplete using Redis, Nginx and Lua
#3Re: Redis on steroids: Autocomplete using Redis, Nginx and Lua
#4Re: Redis on steroids: Autocomplete using Redis, Nginx and Lua
#5I wonder if replacing nginx+lua with http://webd.is/ would be faster (and maybe easier to deploy)?
We build something similar using node.js and it's working quite well. Perhaps we can open source that someday...
Re: Redis on steroids: Autocomplete using Redis, Nginx and Lua
#6Re: Redis on steroids: Autocomplete using Redis, Nginx and Lua
#7The usual implementation for autocomplete is to generate a trie data structure. A naive implementation will not have auto-correction or fix problems more established implementations have already addressed.
Re: Redis on steroids: Autocomplete using Redis, Nginx and Lua
#8Re: Redis on steroids: Autocomplete using Redis, Nginx and Lua
#9The usual implementation for autocomplete is to generate a trie data structure. A naive implementation will not have auto-correction or fix problems more established implementations have already addressed.
Re: Redis on steroids: Autocomplete using Redis, Nginx and Lua
#10I wonder if replacing nginx+lua with http://webd.is/ would be faster (and maybe easier to deploy)?
Webdis is a neat project, but I'd be a bit wary of deploying a custom HTTP server written just for Redis interactions. Nginx is battle-hardened.