Add Memcached description and ref (#1371)
* Add Memcached description and ref * Update content/roadmaps/101-backend/content/110-caching/101-server-side/101-memcached.md Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>pull/1657/head
parent
ec5c8c9d5a
commit
0ddee493e7
1 changed files with 15 additions and 1 deletions
@ -1 +1,15 @@ |
||||
# Memcached |
||||
# Memcached |
||||
|
||||
Memcached (pronounced variously mem-cash-dee or mem-cashed) is a general-purpose distributed memory-caching system. It is often used to speed up dynamic database-driven websites by caching data and objects in RAM to reduce the number of times an external data source (such as a database or API) must be read. Memcached is free and open-source software, licensed under the Revised BSD license. Memcached runs on Unix-like operating systems (Linux and macOS) and on Microsoft Windows. It depends on the `libevent` library. |
||||
|
||||
Memcached's APIs provide a very large hash table distributed across multiple machines. When the table is full, subsequent inserts cause older data to be purged in the least recently used (LRU) order. Applications using Memcached typically layer requests and additions into RAM before falling back on a slower backing store, such as a database. |
||||
|
||||
Memcached has no internal mechanism to track misses which may happen. However, some third-party utilities provide this functionality. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
|
||||
<BadgeLink colorScheme='blue' badgeText='Wikipedia' href='https://en.wikipedia.org/wiki/Memcached'>Memcached, From Wikipedia</BadgeLink> |
||||
|
||||
<BadgeLink colorScheme='blue' badgeText='Github' href='https://github.com/memcached/memcached#readme'>Memcached, From Official Github</BadgeLink> |
||||
|
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.tutorialspoint.com/memcached/index.htm'>Memcached Tutorial</BadgeLink> |
||||
|
Loading…
Reference in new issue