GithubHelp home page GithubHelp logo

gogo-cache's Introduction

gogo-cache

What?

gogo-cache is an in-memory key:value store/cache similar to memcached

It supports LRU ,LFU and FIFO.

In the future, I will support more :)

The architecture of this project is based on the project Node-Simple-Cache

##How?

###Install

go get github.com/nateriver520/gogo-cache

###Example

package main

import (
  "github.com/nateriver520/gogo-cache"
  "time"
)

func main() {
  cache := cache.New("LRU", 1000) // currently you can choose LFU ,LRU and FIFO, and here we set the size of item 1000

  cache.Set(key, value, 20*time.Second) //set expire time, here is 20s

  value := cache.Get(key) // get value from cache

  defer cache.clear() // clear cache

}

APIs

  • Set(key string, value interface{}, expire time.Duration)
    • insert an item to the cache, replacing any existing item
    • If the expire <= 0, the item will never expires
  • Get(key string) interface{}
    • Get an item from the cache. Returns the item or nil
  • Del(key string)
    • Delete an item from the cache. Does nothing if the key is not in the cache.
  • Clear()
    • delete all items from cache
  • Count() int64
    • Returns the number of items in the cache
    • This may include items that have expired, but have not yet been cleaned up

LICENSE

gogo-cache is licensed under the Apache Licence, Version 2.0.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.