golang-github-pmylund-go-cache-dev

Go library for in-memory key/value store similar to memcached
  https://github.com/pmylund/go-cache
  0
  no reviews



Go-cache is an in-memory key:value store/cache similar to memcached that is suitable for applications running on a single machine. its major advantage is that, being essentially a thread-safe map[string]interface{} with expiration times, it doesn't need to serialize or transmit its contents over the network.