Reputation: 121
I use Memcached DB for my website. I know Memcached is a In-mem DB, then it will cache data on RAM. I wonder which RAM does it choose? Server RAM or client RAM?
Upvotes: 0
Views: 493
Reputation: 31
Memchached store the data in the form of objects on the SERVER RAM. Memcached create a key/value pair for cached data.
Upvotes: 2