1. 4d751bb README: fix pkg.go.dev badge link to point to memcache package by Brad Fitzpatrick · 2 weeks ago master
  2. 91de306 README: add pkg.go.dev badge by Brad Fitzpatrick · 2 weeks ago
  3. 8d39553 memcache: rename Mutex name to conventional 'mu' name by Brad Fitzpatrick · 1 year, 1 month ago
  4. 4536b83 Run GH Actions also in PRs by Mikel Olasagasti Uranga · 1 year, 1 month ago
  5. d7e81fc added support to execute "gat" by ghrushneshr25 · 1 year, 1 month ago
  6. 36d5281 memcache: optimize scanGetResponseLine by Bryan Boreham · 1 year, 1 month ago
  7. bf2c6a2 Benchmark for scanGetResponseLine by Bryan Boreham · 1 year, 1 month ago
  8. c9bf3a7 memcache: extend connection deadline before each multi-get operation by Danny Kopping · 1 year, 1 month ago
  9. 24af94b add TLS integration test, update Client.DialContext docs by Brad Fitzpatrick · 2 years, 8 months ago
  10. 21f1bbe raise DefaultTimeout from 100ms to 500ms by Brad Fitzpatrick · 2 years, 8 months ago
  11. 43a49b4 Export Compare-And-Swap (CAS) id in Item by martins · 2 years, 8 months ago
  12. 6f412de add CompareAndSwap (cas) tests by Brad Fitzpatrick · 2 years, 8 months ago
  13. 553e0d5 run the three main test types in parallel by Brad Fitzpatrick · 2 years, 8 months ago
  14. d8906ed README.md: remove some dated Go notes by Brad Fitzpatrick · 2 years, 8 months ago
  15. 2695f49 add start of GitHub Actions CI by Brad Fitzpatrick · 2 years, 8 months ago
  16. 721ea2e add AUTHORS file, adjust copyright headers by Brad Fitzpatrick · 2 years, 8 months ago
  17. cfb6279 docs(readme): update README.md by mingrammer · 2 years, 8 months ago
  18. dc20769 go.mod: bump minimum Go from 1.12 to Go 1.18 by Brad Fitzpatrick · 2 years, 8 months ago
  19. 70caab5 add minimal Go memcached server for tests by Brad Fitzpatrick · 2 years, 8 months ago
  20. acc6962 support custom DialContext by Irina Marchuk · 2 years, 11 months ago
  21. 7d14c5a feat: support custom dialer by Irina Marchuk · 2 years, 11 months ago
  22. 5f7a7d8 memcache: add Client.Close method by Brad Fitzpatrick · 3 years, 4 months ago
  23. 62deef7 Update README.md by Friedrich42 · 3 years, 6 months ago
  24. f7880d5 feat: add support for append/prepend by Justin Vanderhooft · 3 years, 6 months ago
  25. fb4bf63 delete an unused type by Saimon Shaplygin · 4 years, 4 months ago
  26. 1e3230f Convert to string using rune() (#123) by Robert-André Mauchin · 4 years, 4 months ago
  27. a41fca8 Add Ping method. (#91) by Andrei Avram · 7 years ago
  28. 551aad2 add mod file (#94) by Colin Arnott · 7 years ago
  29. bc664df Describe the meaning of 0 for Touch()'s seconds parameter (#82) by mostynb · 8 years ago
  30. f867c99 Use ReadFull instead of ioutil.ReadAll to read objects (#76) by Andrew Rodland · 8 years ago
  31. 7886924 Merge pull request #81 from mostynb/update_link by Brad Fitzpatrick · 8 years ago
  32. e206b6e Replace code.google.com URL with godoc.org URL by Mostyn Bramley-Moore · 8 years ago
  33. 1952afa Merge pull request #36 from fastly/master by Brad Fitzpatrick · 9 years ago
  34. 2fafb84 Merge pull request #58 from qoelet/allow-unicode-keys by Brad Fitzpatrick · 9 years ago
  35. 797efe6 Allow unicode keys by Kenny Shen · 10 years ago
  36. fb1f79c Remove unused Item.Object field. by Brad Fitzpatrick · 10 years ago
  37. 1004392 Avoid unnecessary net.Addr string allocations by Jed Denlea · 11 years ago
  38. eeef758 Paramaterize max idle connections by Jed Denlea · 11 years ago
  39. 72a6864 Address an allocation TODO in the default ServerSelector. by Brad Fitzpatrick · 12 years ago
  40. 19812ca misc style tweaks by Brad Fitzpatrick · 12 years ago
  41. c2ad34c Move the LICENSE up a directory by Brad Fitzpatrick · 12 years ago
  42. ac40937 Fix README mistakes. by Brad Fitzpatrick · 12 years ago
  43. 4faecad Merge pull request #22 from gpaul/master by Brad Fitzpatrick · 12 years ago
  44. ecbc067 go vet: remove unreachable code by Gustav Paul · 12 years ago
  45. ff6d3db Merge pull request #7 from robfig/master by Brad Fitzpatrick · 12 years ago
  46. f52bf5c Added DeleteAll() method by Kenny Grant · 12 years ago
  47. 76a7796 Just use net.Error by Brad Fitzpatrick · 12 years ago
  48. 5f7d3b9 Merge pull request #16 from freelancer/master by Brad Fitzpatrick · 12 years ago
  49. 0f30132 Merge pull request #12 from craigmj/master by Brad Fitzpatrick · 12 years ago
  50. 33c04b3 use Skipf by Brad Fitzpatrick · 12 years ago
  51. f15ecfe Add explicit LICENSE file. by Brad Fitzpatrick · 12 years ago
  52. 4c711e6 Merge pull request #17 from bronze1man/pr-gofmt by Brad Fitzpatrick · 12 years ago
  53. 806ff76 flush_all support by craigmj · 12 years ago
  54. 783b5db gofmt by bronze1man · 12 years ago
  55. 9e30d82 Cleaned up how timeouts were detected, still not amazing by Nick Davies · 12 years ago
  56. d919402 fixed bug with endless go routines by Nick Davies · 12 years ago
  57. 799dd6f Merge pull request #15 from garyburd/patch-1 by Brad Fitzpatrick · 12 years ago
  58. aed8a0d Update documentation link in README.md by Gary Burd · 12 years ago
  59. e952ca0 Merge pull request #13 from asim/master by Brad Fitzpatrick · 13 years ago
  60. 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 · 13 years ago
  61. 82fef77 Added documentation to the Touch method. by craigmj · 13 years ago
  62. f872c08 Added testing of Touch to memcache_test.go by craigmj · 13 years ago
  63. 486cdcf Added TOUCH support by craigmj · 13 years ago
  64. 2aa6507 Merge pull request #10 from d2fn/master by Brad Fitzpatrick · 13 years ago
  65. fed7323 parse headers with or without a cas id (for kestrel, etc) by Dietrich Featherston · 13 years ago
  66. 65b1769 go fmt by Rob Figueiredo · 13 years ago
  67. 2ec1fd6 Add Replace operation by Rob Figueiredo · 13 years ago
  68. 66c15b0 Merge pull request #5 from jgrahamc/master by Brad Fitzpatrick · 13 years ago
  69. b198fc8 Close connections that are being discarded by John Graham-Cumming · 13 years ago
  70. 1c05224 Fix a problem where an error in onItem could result in a bad connection being reused by John Graham-Cumming · 13 years ago
  71. 8f3468c Merge pull request #4 from codemartial/master by Brad Fitzpatrick · 14 years ago
  72. 37d535e Replaced 'goinstall' with 'go get' by Tahir Hashmi · 14 years ago
  73. 345e5c6 use SetDeadline by Brad Fitzpatrick · 14 years ago
  74. e76709e doc link updates by Brad Fitzpatrick · 14 years ago
  75. 95f9a84 remove makefile; use the go tool by Brad Fitzpatrick · 14 years ago
  76. 9282f3f updates to time.Duration by Brad Fitzpatrick · 14 years ago
  77. 521adf1 doc update by Brad Fitzpatrick · 14 years ago
  78. 0780803 gofix by Brad Fitzpatrick · 14 years ago
  79. 3d39f3a Merge pull request #1 from rhencke/master by Brad Fitzpatrick · 15 years ago release.r60
  80. 0b516e9 remove extra %d in printf by Robert Hencke · 15 years ago
  81. f6151f4 Unix socket support. by Brad Fitzpatrick · 15 years ago
  82. 5a924ae Unix socket support. by Brad Fitzpatrick · 15 years ago
  83. 0861359 remove App Engine reference by Brad Fitzpatrick · 15 years ago
  84. 8e208d8 Add Increment & Decrement by Brad Fitzpatrick · 15 years ago
  85. 71d4772 ditch DeleteLock, it's old by Brad Fitzpatrick · 15 years ago
  86. 60179d6 Remove the auto-generated godoc. These will only rot. by Brad Fitzpatrick · 15 years ago
  87. 1a17ac6 Add timeouts to dials by Brad Fitzpatrick · 15 years ago
  88. ee3747d Use gopkgdoc.appspot.com for docs. by Brad Fitzpatrick · 15 years ago
  89. 42205f6 fix doc example by Brad Fitzpatrick · 15 years ago
  90. 506c94f link to API by Brad Fitzpatrick · 15 years ago
  91. e89215b more markdown by Brad Fitzpatrick · 15 years ago
  92. 7412514 more markdown work by Brad Fitzpatrick · 15 years ago
  93. d24b6cb Start of a godoc markdown template. by Brad Fitzpatrick · 15 years ago
  94. 135e67f Update godoc. by Brad Fitzpatrick · 15 years ago
  95. b1bf963 move gitignore up by Brad Fitzpatrick · 15 years ago
  96. cca20f1 fix TARG; move files up by Brad Fitzpatrick · 15 years ago
  97. 10482c4 godoc html by Brad Fitzpatrick · 15 years ago
  98. dba29da more README work by Brad Fitzpatrick · 15 years ago
  99. d0b0472 Rename the README to be markdown by Brad Fitzpatrick · 15 years ago
  100. ebad2bf Add .gitignore by Brad Fitzpatrick · 15 years ago