Tamal Saha 171b359877 Use gitea forked macaron (#7933) | 5 yıl önce | |
---|---|---|
.. | ||
client | 5 yıl önce | |
.gitignore | 5 yıl önce | |
LICENSE | 5 yıl önce | |
README.markdown | 5 yıl önce | |
mc_constants.go | 5 yıl önce | |
mc_req.go | 5 yıl önce | |
mc_res.go | 5 yıl önce | |
tap.go | 5 yıl önce |
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.
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.