LoginSignup
0
0

More than 3 years have passed since last update.

memcachedについて

Last updated at Posted at 2020-02-07

概要

memcachedとは、分散型のキャッシュシステムを構築するためのソフトウェアである。
今まで、サーバーとDBの接続にはRDBMSが主流で使われていたが、大規模なシステムには
向かなかった。(処理が重くなりすぎるため)

そこで、memcached(メムキャシュトゥ)が登場すると。

特徴

  • メモリ上にデータ保存を保存しているので、高速に読める。
  • クライアントの設定で分散処理にできる。(スケールアウトが用意である)
  • 設定した容量を超えると、アクセスされていないモノから消される(LRU)

こんな感じ

スライド1.jpeg

参考

https://gihyo.jp/dev/feature/01/memcached/0001
https://qiita.com/juve_534/items/54f7732641a406f31b55

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0