Cache
-
Buffer vs. cacheDB/InMemory 2019. 9. 29. 13:53
1. Overview The semantics of a "buffer" and a "cache" are not totally different. even so, there are fundamental differences in intent between the process of caching and the process of buffering. A cache is typically used to store frequently accessed data. The data in a cache changes over time but the cache itself may be permanent. Caches often have sophisticated designs that support random acces..
-
Remote Dictionary Server(Redis) and Redis Enterprise ClusterDB/InMemory 2019. 8. 25. 08:18
1. Overview An in-memory data structure project implementing a distributed, in-memory key-value database with optional durability. Redis supports different kinds of abstract data structures, such as strings, lists, maps, sets, sorted sets, HyperLogLogs, bitmaps, streams, and spatial indexes. 2. Description 2.1 Differences with other database systems 2.1.1 Can be considered either a store and a c..
-
Cache BurstWeb 2019. 8. 22. 11:51
1. Overview When a static file gets cached it can be stored for very long periods of time before it ends up expiring. Because of that, some visitors can't see changes made. Cache busting solves the browser caching issue by using a unique file version identifier to tell the browser that a new version of the file is available that makes the browser doesn't retrieve the old file from cache but rath..