Re: project division

2009-05-01 Thread maciek
yes, it's possible, but I'm using nginx to server pages from memcached - e.g. if I got 10k blogs in my blogging platform, it would mean 10k memcached instances and very very long nginx configuration file. also, many memcached instances is using huge amount of memory - more then one memcached

Re: project division

2009-05-01 Thread Les Mikesell
maciejplonski wrote: Hello, I've got memcached installed on my VPS and also I've got there blogging platform. I'm caching whole pages in memcached and serving them by nginx. When one user posts sth, I need to flush whole memcached and delete from cache also other cached blogs. Is it possible

Re: project division

2009-05-01 Thread Abhinav Gupta
Hello, I think a easy way of doing this is, just have a unique key for each Blog(may be user-name) to be prefixed for each data stored in Memcache server, so when you need to flush the data for one particular Blog just change the prefixed key to something else (like user-name-v1) so from now