You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea-fork-majority-judgment/vendor/github.com/couchbase/gomemcached
Antoine GIRARD 559fb6ccf0
chore: update github.com/couchbase/gomemcached and github.com/couchbase/go-couchbase (#9419)
4 years ago
..
client chore: update github.com/couchbase/gomemcached and github.com/couchbase/go-couchbase (#9419) 4 years ago
.gitignore Use Go1.11 module (#5743) 5 years ago
LICENSE add other session providers (#5963) 5 years ago
README.markdown Use Go1.11 module (#5743) 5 years ago
flexibleFraming.go chore: update github.com/couchbase/gomemcached and github.com/couchbase/go-couchbase (#9419) 4 years ago
mc_constants.go chore: update github.com/couchbase/gomemcached and github.com/couchbase/go-couchbase (#9419) 4 years ago
mc_req.go chore: update github.com/couchbase/gomemcached and github.com/couchbase/go-couchbase (#9419) 4 years ago
mc_res.go chore: update github.com/couchbase/gomemcached and github.com/couchbase/go-couchbase (#9419) 4 years ago
tap.go add other session providers (#5963) 5 years ago

README.markdown

gomemcached

This is a memcached binary protocol toolkit in go.

It provides client and server functionality as well as a little sample server showing how I might make a server if I valued purity over performance.

Server Design

overview

The basic design can be seen in gocache. A storage server is run as a goroutine that receives a MCRequest on a channel, and then issues an MCResponse to a channel contained within the request.

Each connection is a separate goroutine, of course, and is responsible for all IO for that connection until the connection drops or the dataServer decides it's stupid and sends a fatal response back over the channel.

There is currently no work at all in making the thing perform (there are specific areas I know need work). This is just my attempt to learn the language somewhat.