0 votes
in MemCached by
What are the Components of Memcached?

1 Answer

0 votes
by

Memcached is made up of 4 main components. These components allow the client and the server to work together in order to deliver cached data as efficiently as possible:.

  1. Client Software: It is used to give a list of available Memcached servers.
  2. A Client-based hashing algorithm: It chooses a server based on the key.
  3. Server Software: It is used to store values and their keys into an internal hash table.
  4. LRU: LRU stands for Least Recently Used. This determines when to throw out old data or reuse memory.

Related questions

0 votes
asked Jun 9, 2020 in MemCached by DavidAnderson
0 votes
asked Jun 9, 2020 in MemCached by DavidAnderson
...