gomemcache icon indicating copy to clipboard operation
gomemcache copied to clipboard

Go Memcached client library #golang

Results 67 gomemcache issues
Sort by recently updated
recently updated
newest added

- support for the commands `stats`, `stats items` and `stats slabs` with struct types definitions - (c *Client) FlushAll() description

Curious on why this is not supported: ``` mc.Increment("my-counter", 1, 0) ```

feature-request

I'm using gomemcache with [Memcachier](https://www.memcachier.com) and having issues. Memcachier requires authentication, which as far as I understand, means that I also have to use the memcache binary protocol. Any help?

feature-request

I think this can be useful for some people using aws-sdk-go http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/AutoDiscovery.AddingToYourClientLibrary.html

feature-request

Hiya, I'm using this library for an application that absolutely pounds a memcached server. Something on the order of 8k queries per second is on my dev branch. However, because...

When the reader/writer returned an `io.EOF` this was passed back to the client instead of marking the TCP connection as bad and attempting to redial. This implements an exponential backoff...

The Sscanf was revealed as being CPU intensive by the -cpuprofile option (It has to use reflection to know what to parse?) ``` export GOMAXPROCS=4; go test -run='^$' -bench SetGet...

cla: yes

I’m not quite sure why it was done this way, but gomemcache creates a `ConnectTimeoutError` instead of the standard `i/o timeout` or `net.OpError`. This, in turn, does not have the...

The goal of this PR is to allow SASL-style authentication through the ASCII protocol (). I'm not confident this a particularly good way of going about it though. Each TCP...

cla: yes

On the begining I set MaxIdleConns to 1 then did pressure test,I got "read: connection reset by peer" or "broken pipe" or "connect: can't assign requested address" panic then I...