Skip to content

Latest commit

 

History

History

memcachedstore

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Memcached Store for Captchas

$ go get clevergo.tech/captchas/stores/memcachedstore
import (
	"clevergo.tech/captchas/stores/memcachedstore"
	"github.com/bradfitz/gomemcache/memcache"
)
// client.
client := memcache.New("localhost:11211")
store := memcachedstore.New(
	client,
	memcachedstore.Expiration(int32(600)), // captcha expiration, optional.
	memcachedstore.Prefix("captchas"),     // key prefix, optional.
)