Does memcached implement any connection scheduling policy?

2008-12-15 Thread mcuser
Hi, Referring to "Connection Scheduling in Web Servers" http://www.cs.bu.edu/faculty/crovella/paper-archive/usits99.pdf "Traditional scheduling theory for simple, single device systems shows that if task sizes are known, policies that favor short tasks provide better mean response time than poli

Re: Does memcached implement any connection scheduling policy?

2008-12-15 Thread dormando
Yo, Current stable head adds a little bit of scheduling in... if a connection has queued up many requests memcached will flip to another connection and idle the bulk worker a bit. Otherwise since all operations take about the same amount of time, no other scheduling is necessary. That chang