gitea/vendor/github.com/couchbase/gomemcached
Antoine GIRARD c4d8d53a6d Backport: Use vendored go-swagger (#8087) (#8165)
* Use vendored go-swagger (#8087)

* Use vendored go-swagger

* vendor go-swagger

* revert un wanteed change

* remove un-needed GO111MODULE

* Update Makefile

Co-Authored-By: techknowlogick <matti@mdranta.net>

* re-generate swagger file
2019-09-12 22:58:09 +03:00
..
client Backport: Use vendored go-swagger (#8087) (#8165) 2019-09-12 22:58:09 +03:00
.gitignore Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
LICENSE add other session providers (#5963) 2019-02-05 11:52:51 -05:00
README.markdown Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
mc_constants.go Backport: Use vendored go-swagger (#8087) (#8165) 2019-09-12 22:58:09 +03:00
mc_req.go add other session providers (#5963) 2019-02-05 11:52:51 -05:00
mc_res.go add other session providers (#5963) 2019-02-05 11:52:51 -05:00
tap.go add other session providers (#5963) 2019-02-05 11:52:51 -05:00

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.