All Projects → bradfitz → Gomemcache

bradfitz / Gomemcache

Licence: apache-2.0
Go Memcached client library #golang

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Labels

Projects that are alternatives of or similar to Gomemcache

cachegrand
cachegrand is an open-source fast, scalable and secure Key-Value store, also fully compatible with Redis protocol, designed from the ground up to take advantage of modern hardware vertical scalability, able to provide better performance and a larger cache at lower cost, without losing focus on distributed systems.
Stars: ✭ 87 (-93.41%)
Mutual labels:  memcache
Pymemcache
A comprehensive, fast, pure-Python memcached client.
Stars: ✭ 552 (-58.21%)
Mutual labels:  memcache
Synchrotron
Caching layer load balancer.
Stars: ✭ 42 (-96.82%)
Mutual labels:  memcache
mdserver-web
Simple Linux Panel
Stars: ✭ 1,064 (-19.45%)
Mutual labels:  memcache
Ring
Python cache interface with clean API and built-in memcache & redis + asyncio support.
Stars: ✭ 404 (-69.42%)
Mutual labels:  memcache
Xmemcached
High performance, easy to use multithreaded memcached client in java.
Stars: ✭ 715 (-45.87%)
Mutual labels:  memcache
akaash-rest-api
Akaash: A restful API template built with PHP driven by flight micro-framework
Stars: ✭ 17 (-98.71%)
Mutual labels:  memcache
Gopherus
This tool generates gopher link for exploiting SSRF and gaining RCE in various servers
Stars: ✭ 1,258 (-4.77%)
Mutual labels:  memcache
Middleware development learning
中间件、高性能服务器、分布式存储等(redis、memcache、nginx、大容量redis pika、rocksdb、mongodb、wiredtiger存储引擎、高性能代理中间件)二次开发、性能优化,逐步整理文档说明并配合demo指导--每周末定时更新2-3篇技术文章及程序demo--(技术交流QQ群:568892619)
Stars: ✭ 449 (-66.01%)
Mutual labels:  memcache
Useful Sites
🍁 一名 phper 的网站收藏。
Stars: ✭ 38 (-97.12%)
Mutual labels:  memcache
memcached
Memcached Operator for Kubernetes
Stars: ✭ 18 (-98.64%)
Mutual labels:  memcache
Pecl Memcache
PHP Extension - Memcache module with support of newer PHP 7.x and PHP 8.x
Stars: ✭ 311 (-76.46%)
Mutual labels:  memcache
Gocache
☔️ A complete Go cache library that brings you multiple ways of managing your caches
Stars: ✭ 775 (-41.33%)
Mutual labels:  memcache
memcache
Node.js memcached client with the most efficient ASCII protocol parser
Stars: ✭ 26 (-98.03%)
Mutual labels:  memcache
Phalcon Vm
Vagrant configuration for PHP7, Phalcon 3.x and Zephir development.
Stars: ✭ 43 (-96.74%)
Mutual labels:  memcache
go-elasticache
Thin abstraction over the Memcache client package gomemcache (https://github.com/bradfitz/gomemcache) allowing it to support AWS ElastiCache cluster nodes
Stars: ✭ 15 (-98.86%)
Mutual labels:  memcache
Php Memcache Dll
PHP-memcache-dll
Stars: ✭ 588 (-55.49%)
Mutual labels:  memcache
Easy Extends
一个简单快速安装PHP扩展的程序--最简单的方法就是使用Linux
Stars: ✭ 85 (-93.57%)
Mutual labels:  memcache
Memcache Info
Simple and efficient way to show information about Memcache.
Stars: ✭ 84 (-93.64%)
Mutual labels:  memcache
Memcachex
Memcached client for Elixir
Stars: ✭ 34 (-97.43%)
Mutual labels:  memcache

About

This is a memcache client library for the Go programming language (http://golang.org/).

Installing

Using go get

$ go get github.com/bradfitz/gomemcache/memcache

After this command gomemcache is ready to use. Its source will be in:

$GOPATH/src/github.com/bradfitz/gomemcache/memcache

Example

import (
        "github.com/bradfitz/gomemcache/memcache"
)

func main() {
     mc := memcache.New("10.0.0.1:11211", "10.0.0.2:11211", "10.0.0.3:11212")
     mc.Set(&memcache.Item{Key: "foo", Value: []byte("my value")})

     it, err := mc.Get("foo")
     ...
}

Full docs, see:

See https://godoc.org/github.com/bradfitz/gomemcache/memcache

Or run:

$ godoc github.com/bradfitz/gomemcache/memcache
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].