Hau Le
Hau Le

Reputation: 121

Where is Memcached Database store data?

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

Answers (1)

Kamlesh Patel
Kamlesh Patel

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

Related Questions