91-9990449935 0120-4256464 |
Memcached Interview QuestionsA list of top frequently asked Memcached interview questions and answers are given below. 1) What is Memcached?Memcached is a general purpose free and open source, high performance, distributed memory object caching system. It is used to speed up database-driven websites by caching data and objects in RAM. In simple words you can say that, Memcached is a component which stores data temporally for 1hour/ 6 hour/ 12 hours/ 1 day etc. and you can integrate this component with your applications to increase their performance. 2) In which language Memcached is written and who is the author?Memcached is written in "C language" and it is written by Danga Interactive. 3) In which websites and services Memcached is generally used?Memcached can be used for:
4) What is the best usage of Memcached?Best usage of Memcached:
5) What are the drawbacks/ limitations of Memcached?A list of limitations or drawbacks of Memcached:
6) In which conditions cache cannot retain the stored information?Cache cannot retain the stored information in following conditions:
7) What is the difference between Memcache and Memcached?Difference between Memcache and Memcached: Table:
8) Is it possible to share a single instance of Memcache between multiple projects?Yes, it is possible to share a single instance of Memcache between multiple projects because Memcache is a memory store space and it can be run on one or more servers. You can also run two different Memcache processes on the same host and yet they are completely independent. 9) If you have multiple Memcache servers and one of the memcache server fails which has your data, will it ever try to get key data from that one failed server?The data in the failed server won't get removed, but there is a provision for auto-failure, which can be configured for multiple nodes. Fail-over can be triggered during any kind of socket or Memcached server level errors and not during normal client errors like adding an existing key, etc. 10) How can you minimize the Memcached server outages?Following are the methods to minimize the Memcached server outage:
11) How can you update Memcached when data changes?There are two ways to update Memcached when data changes: By clearing the cache proactively: You can update memcached by clearing the cache when an insert or update is made. By resetting the cache: It is slightly similar to the first method but rather than just deleting the keys and waiting for the next request for the data to refresh the cache, it resets the values after the insert or update. 12) What is Dogpile effect? How to prevent this effect?Dogpile effect is a situation when cache expires, and websites are hit by multiple requests made by the client at the same time. You can prevent this effect by using semaphore lock. In this system when value expires, first process acquires the lock and starts generating new value. 13) If server gets shut down then data stored in Memcached is still available?In Memcached, data is not permanently stored. This data is not durable so if the server is shut down or restarted then all the data stored in Memcached is deleted. 14) What is the difference between SAP HANA and Memcached?SAP HANA is an in-memory RDBMS and mostly used for accelerating SAP applications while Memcached is a key/value caching system and used for accessing both RDBMS and NOSQL databases. 15) How to connect Memcached server with telnet command?By using this memcached command: telnet ostname portNumber 16) How to get the value of key?By using this command: get key 17) How to set the value of key?By using this format: set[key][flags][exptim][bytes][noreply] 18) How to add value in key?By using this format: add[key][flags][exptim][bytes][noreply] 19) How to replace the value of key?By using this format: replace[key][flags][exptim][bytes][noreply] 20) How to append the value of key?By using this format: append[key][flags][exptim][bytes][noreply] 21) How to prepend value of key?By using this format: prepend[key][flags][exptim][bytes][noreply] 22) How to delete the key?By using this command: delete key 23) How to show the stats?By using this command: stats 24) How to get the versions?By using this command: Version 25) How to close the connection?By using this command: Quit |