Skip to content

Latest commit

 

History

History

memcache

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

MemCache

Installation

go get -u github.com/gojuukaze/YTask/drives/memcache/v3

Backend

package main

import (
    "github.com/gojuukaze/YTask/drives/memcache/v3"
)

func main() {
	backend := memcache.NewMemCacheBackend([]string{"127.0.0.1:11211"}, 10)
	// ...
}