|
Answer» See the following steps to understand how Memcached works:
- Memcached first try to get the detail of user, Browser send the request to APPLICATION.
- Application calls the Memcached for particular user.
- If Result FOUND in Memcached, Return the result from Memcached.
- If Result Not found in Memcached, Application sends the request to DATABASE and save the result in memcached.
- Each Memcached have one unique key.
- Get/Set the data works on the behalf of key.
- you can also delete one or more KEYS.
- You can also assign tags to one/more keys.
See the following steps to understand how Memcached works:
|