Thanks to visit codestin.com
Credit goes to chromium.googlesource.com
Sign in
chromium
/
external
/
github.com
/
bradfitz
/
gomemcache
/
HEAD
8d39553
memcache: rename Mutex name to conventional 'mu' name
by Brad Fitzpatrick
· 4 months ago
master
4536b83
Run GH Actions also in PRs
by Mikel Olasagasti Uranga
· 4 months ago
d7e81fc
added support to execute "gat"
by ghrushneshr25
· 4 months ago
36d5281
memcache: optimize scanGetResponseLine
by Bryan Boreham
· 4 months ago
bf2c6a2
Benchmark for scanGetResponseLine
by Bryan Boreham
· 4 months ago
c9bf3a7
memcache: extend connection deadline before each multi-get operation
by Danny Kopping
· 4 months ago
24af94b
add TLS integration test, update Client.DialContext docs
by Brad Fitzpatrick
· 1 year, 11 months ago
21f1bbe
raise DefaultTimeout from 100ms to 500ms
by Brad Fitzpatrick
· 1 year, 11 months ago
43a49b4
Export Compare-And-Swap (CAS) id in Item
by martins
· 1 year, 11 months ago
6f412de
add CompareAndSwap (cas) tests
by Brad Fitzpatrick
· 1 year, 11 months ago
553e0d5
run the three main test types in parallel
by Brad Fitzpatrick
· 1 year, 11 months ago
d8906ed
README.md: remove some dated Go notes
by Brad Fitzpatrick
· 1 year, 11 months ago
2695f49
add start of GitHub Actions CI
by Brad Fitzpatrick
· 1 year, 11 months ago
721ea2e
add AUTHORS file, adjust copyright headers
by Brad Fitzpatrick
· 1 year, 11 months ago
cfb6279
docs(readme): update README.md
by mingrammer
· 1 year, 11 months ago
dc20769
go.mod: bump minimum Go from 1.12 to Go 1.18
by Brad Fitzpatrick
· 1 year, 11 months ago
70caab5
add minimal Go memcached server for tests
by Brad Fitzpatrick
· 1 year, 11 months ago
acc6962
support custom DialContext
by Irina Marchuk
· 2 years, 1 month ago
7d14c5a
feat: support custom dialer
by Irina Marchuk
· 2 years, 1 month ago
5f7a7d8
memcache: add Client.Close method
by Brad Fitzpatrick
· 2 years, 6 months ago
62deef7
Update README.md
by Friedrich42
· 2 years, 9 months ago
f7880d5
feat: add support for append/prepend
by Justin Vanderhooft
· 2 years, 9 months ago
fb4bf63
delete an unused type
by Saimon Shaplygin
· 3 years, 6 months ago
1e3230f
Convert to string using rune() (#123)
by Robert-André Mauchin
· 3 years, 6 months ago
a41fca8
Add Ping method. (#91)
by Andrei Avram
· 6 years ago
551aad2
add mod file (#94)
by Colin Arnott
· 6 years ago
bc664df
Describe the meaning of 0 for Touch()'s seconds parameter (#82)
by mostynb
· 7 years ago
f867c99
Use ReadFull instead of ioutil.ReadAll to read objects (#76)
by Andrew Rodland
· 7 years ago
7886924
Merge pull request #81 from mostynb/update_link
by Brad Fitzpatrick
· 7 years ago
e206b6e
Replace code.google.com URL with godoc.org URL
by Mostyn Bramley-Moore
· 7 years ago
1952afa
Merge pull request #36 from fastly/master
by Brad Fitzpatrick
· 8 years ago
2fafb84
Merge pull request #58 from qoelet/allow-unicode-keys
by Brad Fitzpatrick
· 9 years ago
797efe6
Allow unicode keys
by Kenny Shen
· 9 years ago
fb1f79c
Remove unused Item.Object field.
by Brad Fitzpatrick
· 10 years ago
1004392
Avoid unnecessary net.Addr string allocations
by Jed Denlea
· 10 years ago
eeef758
Paramaterize max idle connections
by Jed Denlea
· 10 years ago
72a6864
Address an allocation TODO in the default ServerSelector.
by Brad Fitzpatrick
· 11 years ago
19812ca
misc style tweaks
by Brad Fitzpatrick
· 11 years ago
c2ad34c
Move the LICENSE up a directory
by Brad Fitzpatrick
· 11 years ago
ac40937
Fix README mistakes.
by Brad Fitzpatrick
· 11 years ago
4faecad
Merge pull request #22 from gpaul/master
by Brad Fitzpatrick
· 11 years ago
ecbc067
go vet: remove unreachable code
by Gustav Paul
· 11 years ago
ff6d3db
Merge pull request #7 from robfig/master
by Brad Fitzpatrick
· 11 years ago
f52bf5c
Added DeleteAll() method
by Kenny Grant
· 11 years ago
76a7796
Just use net.Error
by Brad Fitzpatrick
· 11 years ago
5f7d3b9
Merge pull request #16 from freelancer/master
by Brad Fitzpatrick
· 11 years ago
0f30132
Merge pull request #12 from craigmj/master
by Brad Fitzpatrick
· 11 years ago
33c04b3
use Skipf
by Brad Fitzpatrick
· 11 years ago
f15ecfe
Add explicit LICENSE file.
by Brad Fitzpatrick
· 11 years ago
4c711e6
Merge pull request #17 from bronze1man/pr-gofmt
by Brad Fitzpatrick
· 11 years ago
806ff76
flush_all support
by craigmj
· 11 years ago
783b5db
gofmt
by bronze1man
· 11 years ago
9e30d82
Cleaned up how timeouts were detected, still not amazing
by Nick Davies
· 12 years ago
d919402
fixed bug with endless go routines
by Nick Davies
· 12 years ago
799dd6f
Merge pull request #15 from garyburd/patch-1
by Brad Fitzpatrick
· 12 years ago
aed8a0d
Update documentation link in README.md
by Gary Burd
· 12 years ago
e952ca0
Merge pull request #13 from asim/master
by Brad Fitzpatrick
· 12 years ago
e7a12e6
Fix connection leak. Use net.Addr.String() as freeconn map key. When the function SetServers is called the ServerList is replaced by a new set of net.Addr interfaces which no longer match those used as keys for the freeconn map. The underlying data structure is usually a TCPaddr or UnixAddr pointer. Go's equality operation on the map keys looks at the underlying pointer and thinks they are not the same so continues to create new connections assuming it does not have any free.
by Asim Aslam
· 12 years ago
82fef77
Added documentation to the Touch method.
by craigmj
· 12 years ago
f872c08
Added testing of Touch to memcache_test.go
by craigmj
· 12 years ago
486cdcf
Added TOUCH support
by craigmj
· 12 years ago
2aa6507
Merge pull request #10 from d2fn/master
by Brad Fitzpatrick
· 12 years ago
fed7323
parse headers with or without a cas id (for kestrel, etc)
by Dietrich Featherston
· 12 years ago
65b1769
go fmt
by Rob Figueiredo
· 12 years ago
2ec1fd6
Add Replace operation
by Rob Figueiredo
· 12 years ago
66c15b0
Merge pull request #5 from jgrahamc/master
by Brad Fitzpatrick
· 13 years ago
b198fc8
Close connections that are being discarded
by John Graham-Cumming
· 13 years ago
1c05224
Fix a problem where an error in onItem could result in a bad connection being reused
by John Graham-Cumming
· 13 years ago
8f3468c
Merge pull request #4 from codemartial/master
by Brad Fitzpatrick
· 13 years ago
37d535e
Replaced 'goinstall' with 'go get'
by Tahir Hashmi
· 13 years ago
345e5c6
use SetDeadline
by Brad Fitzpatrick
· 13 years ago
e76709e
doc link updates
by Brad Fitzpatrick
· 13 years ago
95f9a84
remove makefile; use the go tool
by Brad Fitzpatrick
· 14 years ago
9282f3f
updates to time.Duration
by Brad Fitzpatrick
· 14 years ago
521adf1
doc update
by Brad Fitzpatrick
· 14 years ago
0780803
gofix
by Brad Fitzpatrick
· 14 years ago
3d39f3a
Merge pull request #1 from rhencke/master
by Brad Fitzpatrick
· 14 years ago
release.r60
0b516e9
remove extra %d in printf
by Robert Hencke
· 14 years ago
f6151f4
Unix socket support.
by Brad Fitzpatrick
· 14 years ago
5a924ae
Unix socket support.
by Brad Fitzpatrick
· 14 years ago
0861359
remove App Engine reference
by Brad Fitzpatrick
· 14 years ago
8e208d8
Add Increment & Decrement
by Brad Fitzpatrick
· 14 years ago
71d4772
ditch DeleteLock, it's old
by Brad Fitzpatrick
· 14 years ago
60179d6
Remove the auto-generated godoc. These will only rot.
by Brad Fitzpatrick
· 14 years ago
1a17ac6
Add timeouts to dials
by Brad Fitzpatrick
· 14 years ago
ee3747d
Use gopkgdoc.appspot.com for docs.
by Brad Fitzpatrick
· 14 years ago
42205f6
fix doc example
by Brad Fitzpatrick
· 14 years ago
506c94f
link to API
by Brad Fitzpatrick
· 14 years ago
e89215b
more markdown
by Brad Fitzpatrick
· 14 years ago
7412514
more markdown work
by Brad Fitzpatrick
· 14 years ago
d24b6cb
Start of a godoc markdown template.
by Brad Fitzpatrick
· 14 years ago
135e67f
Update godoc.
by Brad Fitzpatrick
· 14 years ago
b1bf963
move gitignore up
by Brad Fitzpatrick
· 14 years ago
cca20f1
fix TARG; move files up
by Brad Fitzpatrick
· 14 years ago
10482c4
godoc html
by Brad Fitzpatrick
· 14 years ago
dba29da
more README work
by Brad Fitzpatrick
· 14 years ago
d0b0472
Rename the README to be markdown
by Brad Fitzpatrick
· 14 years ago
ebad2bf
Add .gitignore
by Brad Fitzpatrick
· 14 years ago
2b66e42
add a README, autogenerated from godoc -html
by Brad Fitzpatrick
· 14 years ago
eb81789
set timeouts
by Brad Fitzpatrick
· 14 years ago
Next »