So basically, I am trying to decide if I should go for dedicated memcache.
My scenario is as follows: I am working on an application that provides real time analysis for some public data. I am going to maintain a total 15kb key/value memcache (20 keys, variable values) Meanwhile values are constantly changing (total keys/values around 20 updates every 3 seconds) Hits to the website will perform request for these keys (also around a request per 3 seconds)
I am assuming that 10000 users hit the website immediately, this will produce about 20 * 10000 requests each 3 seconds.
Considering the size of the memcache (relatively small), but also the number of requests produced about 7000/second (memcache key/value access), would dedicated memcache be more of "risk averse" deal for this situation. Thanks,