MCPcopy Create free account
hub / github.com/bradfitz/gomemcache

github.com/bradfitz/gomemcache @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
90 symbols 260 edges 6 files 37 documented · 41% 35 cross-repo links updated 37d ago★ 1,88124 open issues

Browse by type

Functions 80 Types & classes 10
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

About

Go Reference

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

Example

Install with:

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

Then use it like:

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://pkg.go.dev/github.com/bradfitz/gomemcache/memcache

Or run:

$ godoc github.com/bradfitz/gomemcache/memcache

Extension points exported contracts — how you extend this code

browse all types & interfaces →

Core symbols most depended-on inside this repo

browse all functions →

Shape

Method 55
Function 25
Struct 9
Interface 1

Languages

Go100%

Modules by API surface

memcache/memcache.go57 symbols
memcache/selector.go11 symbols
memcache/memcache_test.go10 symbols
memcache/fakeserver_test.go8 symbols
memcache/selector_test.go3 symbols
memcache/fakecerts_test.go1 symbols

For agents

$ claude mcp add gomemcache \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page