dalli_memcached 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (209) hide show
  1. data/BENCHMARKS +142 -0
  2. data/CHANGELOG +176 -0
  3. data/Gemfile +11 -0
  4. data/Gemfile.lock +45 -0
  5. data/LICENSE +184 -0
  6. data/Manifest +209 -0
  7. data/README.rdoc +124 -0
  8. data/Rakefile +134 -0
  9. data/TODO +1 -0
  10. data/dalli_memcached.gemspec +0 -0
  11. data/ext/extconf-make.rb +25 -0
  12. data/ext/extconf.rb +78 -0
  13. data/ext/libmemcached-0.32/AUTHORS +7 -0
  14. data/ext/libmemcached-0.32/COPYING +32 -0
  15. data/ext/libmemcached-0.32/ChangeLog +303 -0
  16. data/ext/libmemcached-0.32/INSTALL +302 -0
  17. data/ext/libmemcached-0.32/Makefile.am +36 -0
  18. data/ext/libmemcached-0.32/Makefile.in +911 -0
  19. data/ext/libmemcached-0.32/NEWS +1 -0
  20. data/ext/libmemcached-0.32/README +33 -0
  21. data/ext/libmemcached-0.32/THANKS +14 -0
  22. data/ext/libmemcached-0.32/TODO +11 -0
  23. data/ext/libmemcached-0.32/aclocal.m4 +2108 -0
  24. data/ext/libmemcached-0.32/clients/Makefile.am +80 -0
  25. data/ext/libmemcached-0.32/clients/Makefile.in +773 -0
  26. data/ext/libmemcached-0.32/clients/client_options.h +32 -0
  27. data/ext/libmemcached-0.32/clients/execute.c +64 -0
  28. data/ext/libmemcached-0.32/clients/execute.h +5 -0
  29. data/ext/libmemcached-0.32/clients/generator.c +74 -0
  30. data/ext/libmemcached-0.32/clients/generator.h +20 -0
  31. data/ext/libmemcached-0.32/clients/memcat.c +178 -0
  32. data/ext/libmemcached-0.32/clients/memcp.c +251 -0
  33. data/ext/libmemcached-0.32/clients/memdump.c +170 -0
  34. data/ext/libmemcached-0.32/clients/memerror.c +80 -0
  35. data/ext/libmemcached-0.32/clients/memflush.c +143 -0
  36. data/ext/libmemcached-0.32/clients/memrm.c +160 -0
  37. data/ext/libmemcached-0.32/clients/memslap.c +441 -0
  38. data/ext/libmemcached-0.32/clients/memstat.c +326 -0
  39. data/ext/libmemcached-0.32/clients/utilities.c +207 -0
  40. data/ext/libmemcached-0.32/clients/utilities.h +41 -0
  41. data/ext/libmemcached-0.32/config.h.in +254 -0
  42. data/ext/libmemcached-0.32/config/compile +143 -0
  43. data/ext/libmemcached-0.32/config/config.guess +1561 -0
  44. data/ext/libmemcached-0.32/config/config.rpath +666 -0
  45. data/ext/libmemcached-0.32/config/config.sub +1686 -0
  46. data/ext/libmemcached-0.32/config/depcomp +630 -0
  47. data/ext/libmemcached-0.32/config/install-sh +520 -0
  48. data/ext/libmemcached-0.32/config/ltmain.sh +9636 -0
  49. data/ext/libmemcached-0.32/config/missing +376 -0
  50. data/ext/libmemcached-0.32/configure +23843 -0
  51. data/ext/libmemcached-0.32/configure.ac +120 -0
  52. data/ext/libmemcached-0.32/libmemcached/Makefile.am +111 -0
  53. data/ext/libmemcached-0.32/libmemcached/Makefile.in +1069 -0
  54. data/ext/libmemcached-0.32/libmemcached/byteorder.c +31 -0
  55. data/ext/libmemcached-0.32/libmemcached/common.h +189 -0
  56. data/ext/libmemcached-0.32/libmemcached/crc.c +86 -0
  57. data/ext/libmemcached-0.32/libmemcached/hsieh_hash.c +68 -0
  58. data/ext/libmemcached-0.32/libmemcached/jenkins_hash.c +213 -0
  59. data/ext/libmemcached-0.32/libmemcached/libmemcached.ver +1 -0
  60. data/ext/libmemcached-0.32/libmemcached/libmemcached_probes.d +30 -0
  61. data/ext/libmemcached-0.32/libmemcached/libmemcached_probes.h +82 -0
  62. data/ext/libmemcached-0.32/libmemcached/md5.c +354 -0
  63. data/ext/libmemcached-0.32/libmemcached/memcached.c +153 -0
  64. data/ext/libmemcached-0.32/libmemcached/memcached.h +305 -0
  65. data/ext/libmemcached-0.32/libmemcached/memcached.hpp +799 -0
  66. data/ext/libmemcached-0.32/libmemcached/memcached/README.txt +7 -0
  67. data/ext/libmemcached-0.32/libmemcached/memcached/protocol_binary.h +385 -0
  68. data/ext/libmemcached-0.32/libmemcached/memcached_allocators.c +72 -0
  69. data/ext/libmemcached-0.32/libmemcached/memcached_analyze.c +100 -0
  70. data/ext/libmemcached-0.32/libmemcached/memcached_auto.c +207 -0
  71. data/ext/libmemcached-0.32/libmemcached/memcached_behavior.c +290 -0
  72. data/ext/libmemcached-0.32/libmemcached/memcached_callback.c +175 -0
  73. data/ext/libmemcached-0.32/libmemcached/memcached_configure.h.in +23 -0
  74. data/ext/libmemcached-0.32/libmemcached/memcached_connect.c +371 -0
  75. data/ext/libmemcached-0.32/libmemcached/memcached_constants.h +146 -0
  76. data/ext/libmemcached-0.32/libmemcached/memcached_delete.c +0 -0
  77. data/ext/libmemcached-0.32/libmemcached/memcached_do.c +72 -0
  78. data/ext/libmemcached-0.32/libmemcached/memcached_dump.c +79 -0
  79. data/ext/libmemcached-0.32/libmemcached/memcached_exist.c +114 -0
  80. data/ext/libmemcached-0.32/libmemcached/memcached_exist.h +20 -0
  81. data/ext/libmemcached-0.32/libmemcached/memcached_fetch.c +102 -0
  82. data/ext/libmemcached-0.32/libmemcached/memcached_flush.c +89 -0
  83. data/ext/libmemcached-0.32/libmemcached/memcached_flush_buffers.c +23 -0
  84. data/ext/libmemcached-0.32/libmemcached/memcached_get.c +494 -0
  85. data/ext/libmemcached-0.32/libmemcached/memcached_get.h +87 -0
  86. data/ext/libmemcached-0.32/libmemcached/memcached_hash.c +252 -0
  87. data/ext/libmemcached-0.32/libmemcached/memcached_hosts.c +510 -0
  88. data/ext/libmemcached-0.32/libmemcached/memcached_internal.h +31 -0
  89. data/ext/libmemcached-0.32/libmemcached/memcached_io.c +594 -0
  90. data/ext/libmemcached-0.32/libmemcached/memcached_io.h +72 -0
  91. data/ext/libmemcached-0.32/libmemcached/memcached_key.c +28 -0
  92. data/ext/libmemcached-0.32/libmemcached/memcached_parse.c +74 -0
  93. data/ext/libmemcached-0.32/libmemcached/memcached_pool.h +38 -0
  94. data/ext/libmemcached-0.32/libmemcached/memcached_purge.c +76 -0
  95. data/ext/libmemcached-0.32/libmemcached/memcached_quit.c +75 -0
  96. data/ext/libmemcached-0.32/libmemcached/memcached_response.c +529 -0
  97. data/ext/libmemcached-0.32/libmemcached/memcached_result.c +57 -0
  98. data/ext/libmemcached-0.32/libmemcached/memcached_result.h +59 -0
  99. data/ext/libmemcached-0.32/libmemcached/memcached_sasl.c +225 -0
  100. data/ext/libmemcached-0.32/libmemcached/memcached_sasl.h +44 -0
  101. data/ext/libmemcached-0.32/libmemcached/memcached_server.c +159 -0
  102. data/ext/libmemcached-0.32/libmemcached/memcached_server.h +93 -0
  103. data/ext/libmemcached-0.32/libmemcached/memcached_stats.c +437 -0
  104. data/ext/libmemcached-0.32/libmemcached/memcached_storage.c +514 -0
  105. data/ext/libmemcached-0.32/libmemcached/memcached_storage.h +107 -0
  106. data/ext/libmemcached-0.32/libmemcached/memcached_strerror.c +92 -0
  107. data/ext/libmemcached-0.32/libmemcached/memcached_string.c +138 -0
  108. data/ext/libmemcached-0.32/libmemcached/memcached_string.h +53 -0
  109. data/ext/libmemcached-0.32/libmemcached/memcached_touch.c +60 -0
  110. data/ext/libmemcached-0.32/libmemcached/memcached_touch.h +31 -0
  111. data/ext/libmemcached-0.32/libmemcached/memcached_types.h +44 -0
  112. data/ext/libmemcached-0.32/libmemcached/memcached_util.h +15 -0
  113. data/ext/libmemcached-0.32/libmemcached/memcached_verbosity.c +36 -0
  114. data/ext/libmemcached-0.32/libmemcached/memcached_version.c +112 -0
  115. data/ext/libmemcached-0.32/libmemcached/memcached_watchpoint.h +38 -0
  116. data/ext/libmemcached-0.32/libmemcached/murmur_hash.c +76 -0
  117. data/ext/libmemcached-0.32/libmemcached/visibility.h +51 -0
  118. data/ext/libmemcached-0.32/libmemcachedutil/Makefile.am +11 -0
  119. data/ext/libmemcached-0.32/libmemcachedutil/Makefile.in +604 -0
  120. data/ext/libmemcached-0.32/libmemcachedutil/libmemcachedutil.ver +1 -0
  121. data/ext/libmemcached-0.32/libmemcachedutil/memcached_pool.c +170 -0
  122. data/ext/libmemcached-0.32/m4/ac_cxx_compile_stdcxx_0x.m4 +103 -0
  123. data/ext/libmemcached-0.32/m4/ac_cxx_header_stdcxx_98.m4 +67 -0
  124. data/ext/libmemcached-0.32/m4/acx_pthread.m4 +276 -0
  125. data/ext/libmemcached-0.32/m4/byteorder.m4 +40 -0
  126. data/ext/libmemcached-0.32/m4/deprecated.m4 +17 -0
  127. data/ext/libmemcached-0.32/m4/enable_utillib.m4 +16 -0
  128. data/ext/libmemcached-0.32/m4/extensions.m4 +94 -0
  129. data/ext/libmemcached-0.32/m4/hsieh.m4 +18 -0
  130. data/ext/libmemcached-0.32/m4/lib-prefix.m4 +221 -0
  131. data/ext/libmemcached-0.32/m4/libtool.m4 +7831 -0
  132. data/ext/libmemcached-0.32/m4/ltoptions.m4 +369 -0
  133. data/ext/libmemcached-0.32/m4/ltsugar.m4 +123 -0
  134. data/ext/libmemcached-0.32/m4/ltversion.m4 +23 -0
  135. data/ext/libmemcached-0.32/m4/lt~obsolete.m4 +98 -0
  136. data/ext/libmemcached-0.32/m4/memcached.m4 +30 -0
  137. data/ext/libmemcached-0.32/m4/pandora_64bit.m4 +55 -0
  138. data/ext/libmemcached-0.32/m4/pandora_canonical.m4 +151 -0
  139. data/ext/libmemcached-0.32/m4/pandora_check_compiler_version.m4 +37 -0
  140. data/ext/libmemcached-0.32/m4/pandora_check_cxx_standard.m4 +16 -0
  141. data/ext/libmemcached-0.32/m4/pandora_enable_dtrace.m4 +41 -0
  142. data/ext/libmemcached-0.32/m4/pandora_ensure_gcc_version.m4 +36 -0
  143. data/ext/libmemcached-0.32/m4/pandora_have_better_malloc.m4 +54 -0
  144. data/ext/libmemcached-0.32/m4/pandora_have_sasl.m4 +133 -0
  145. data/ext/libmemcached-0.32/m4/pandora_header_assert.m4 +23 -0
  146. data/ext/libmemcached-0.32/m4/pandora_libtool.m4 +15 -0
  147. data/ext/libmemcached-0.32/m4/pandora_optimize.m4 +79 -0
  148. data/ext/libmemcached-0.32/m4/pandora_shared_ptr.m4 +56 -0
  149. data/ext/libmemcached-0.32/m4/pandora_vc_build.m4 +32 -0
  150. data/ext/libmemcached-0.32/m4/pandora_warnings.m4 +262 -0
  151. data/ext/libmemcached-0.32/m4/pod2man.m4 +7 -0
  152. data/ext/libmemcached-0.32/m4/protocol_binary.m4 +23 -0
  153. data/ext/libmemcached-0.32/m4/setsockopt.m4 +57 -0
  154. data/ext/libmemcached-0.32/m4/visibility.m4 +52 -0
  155. data/ext/libmemcached-0.32/support/Makefile.am +4 -0
  156. data/ext/libmemcached-0.32/support/Makefile.in +487 -0
  157. data/ext/libmemcached-0.32/support/libmemcached-fc.spec.in +105 -0
  158. data/ext/libmemcached-0.32/support/libmemcached.pc.in +10 -0
  159. data/ext/libmemcached-0.32/support/libmemcached.spec +105 -0
  160. data/ext/libmemcached-0.32/support/libmemcached.spec.in +105 -0
  161. data/ext/libmemcached-0.32/support/set_benchmark.sh +5 -0
  162. data/ext/libmemcached-0.32/tests/Makefile.am +113 -0
  163. data/ext/libmemcached-0.32/tests/Makefile.in +762 -0
  164. data/ext/libmemcached-0.32/tests/atomsmasher.c +245 -0
  165. data/ext/libmemcached-0.32/tests/function.c +4904 -0
  166. data/ext/libmemcached-0.32/tests/ketama_test_cases.h +108 -0
  167. data/ext/libmemcached-0.32/tests/output.cmp +7 -0
  168. data/ext/libmemcached-0.32/tests/output.res +7 -0
  169. data/ext/libmemcached-0.32/tests/output2.res +46 -0
  170. data/ext/libmemcached-0.32/tests/plus.cpp +293 -0
  171. data/ext/libmemcached-0.32/tests/r/memcat.res +19 -0
  172. data/ext/libmemcached-0.32/tests/r/memcp.res +27 -0
  173. data/ext/libmemcached-0.32/tests/r/memrm.res +19 -0
  174. data/ext/libmemcached-0.32/tests/r/memslap.res +33 -0
  175. data/ext/libmemcached-0.32/tests/r/memstat.res +33 -0
  176. data/ext/libmemcached-0.32/tests/server.c +118 -0
  177. data/ext/libmemcached-0.32/tests/server.h +25 -0
  178. data/ext/libmemcached-0.32/tests/start.c +16 -0
  179. data/ext/libmemcached-0.32/tests/t/memcat.test +4 -0
  180. data/ext/libmemcached-0.32/tests/t/memcp.test +3 -0
  181. data/ext/libmemcached-0.32/tests/t/memrm.test +3 -0
  182. data/ext/libmemcached-0.32/tests/t/memslap.test +5 -0
  183. data/ext/libmemcached-0.32/tests/t/memstat.test +3 -0
  184. data/ext/libmemcached-0.32/tests/test.c +137 -0
  185. data/ext/libmemcached-0.32/tests/test.h +46 -0
  186. data/ext/libmemcached-0.32/tests/udp.c +76 -0
  187. data/ext/rlibmemcached.i +258 -0
  188. data/ext/rlibmemcached_wrap.c +13917 -0
  189. data/lib/memcached.rb +33 -0
  190. data/lib/memcached/auth.rb +16 -0
  191. data/lib/memcached/behaviors.rb +78 -0
  192. data/lib/memcached/exceptions.rb +84 -0
  193. data/lib/memcached/experimental.rb +48 -0
  194. data/lib/memcached/marshal_codec.rb +10 -0
  195. data/lib/memcached/memcached.rb +732 -0
  196. data/lib/memcached/rails.rb +250 -0
  197. data/test/profile/benchmark.rb +280 -0
  198. data/test/profile/c_profiler.rb +14 -0
  199. data/test/profile/exercise.rb +185 -0
  200. data/test/profile/rb_profiler.rb +21 -0
  201. data/test/profile/valgrind.rb +10 -0
  202. data/test/setup.rb +30 -0
  203. data/test/teardown.rb +0 -0
  204. data/test/test_helper.rb +18 -0
  205. data/test/unit/binding_test.rb +8 -0
  206. data/test/unit/memcached_experimental_test.rb +272 -0
  207. data/test/unit/memcached_test.rb +1487 -0
  208. data/test/unit/rails_test.rb +330 -0
  209. metadata +347 -0
data/TODO ADDED
@@ -0,0 +1 @@
1
+ * Remove SWIG and modify libmemcached to accept and return Ruby objects directly
Binary file
@@ -0,0 +1,25 @@
1
+ require 'rbconfig'
2
+
3
+ $CXXFLAGS = ENV['CXXFLAGS']
4
+ $PATH = ENV['SOURCE_DIR']
5
+ $GMAKE_CMD = ENV['GMAKE_CMD']
6
+
7
+ HERE = ENV['HERE']
8
+
9
+ BSD = RbConfig::CONFIG['build_os'] =~ /^freebsd|^openbsd/
10
+
11
+ Dir.chdir(HERE)
12
+
13
+ old_dir = Dir.pwd
14
+
15
+ Dir.chdir($PATH)
16
+
17
+ system("cd .") if BSD #Fix for a "quirk" that BSD has..
18
+
19
+ puts(cmd = "#{$GMAKE_CMD} CXXFLAGS='#{$CXXFLAGS}' || true 2>&1")
20
+ raise "'#{cmd}' failed" unless system(cmd)
21
+
22
+ puts(cmd = "#{$GMAKE_CMD} install || true 2>&1")
23
+ raise "'#{cmd}' failed" unless system(cmd)
24
+
25
+ Dir.chdir(old_dir)
@@ -0,0 +1,78 @@
1
+ require 'mkmf'
2
+ require 'rbconfig'
3
+
4
+ unless find_header('sasl/sasl.h')
5
+ abort 'Please install SASL to continue. The package is called libsasl2-dev on Ubuntu and cyrus-sasl on Gentoo.'
6
+ end
7
+
8
+ HERE = File.expand_path(File.dirname(__FILE__))
9
+ BUNDLE_PATH = Dir.glob("libmemcached-*").first
10
+
11
+ SOLARIS_32 = RbConfig::CONFIG['target'] == "i386-pc-solaris2.10"
12
+ BSD = RbConfig::CONFIG['host_os'].downcase =~ /bsd/
13
+
14
+ $CFLAGS = "#{RbConfig::CONFIG['CFLAGS']} #{$CFLAGS}".gsub("$(cflags)", "").gsub("-fno-common", "").gsub("-Werror=declaration-after-statement", "")
15
+ $CFLAGS << " -std=gnu99" if SOLARIS_32
16
+ $CFLAGS << " -I/usr/local/include" if BSD
17
+ $EXTRA_CONF = " --disable-64bit" if SOLARIS_32
18
+ $LDFLAGS = "#{RbConfig::CONFIG['LDFLAGS']} #{$LDFLAGS} -L#{RbConfig::CONFIG['libdir']}".gsub("$(ldflags)", "").gsub("-fno-common", "")
19
+ $CXXFLAGS = "#{RbConfig::CONFIG['CXXFLAGS']} -std=gnu++98"
20
+ $CC = "CC=#{RbConfig::MAKEFILE_CONFIG["CC"].inspect}"
21
+
22
+ # JRuby's default configure options can't build libmemcached properly
23
+ LIBM_CFLAGS = defined?(JRUBY_VERSION) ? "-fPIC -g -O2" : $CFLAGS
24
+ LIBM_LDFLAGS = defined?(JRUBY_VERSION) ? "-fPIC -lsasl2 -lm" : $LDFLAGS
25
+
26
+ GMAKE_CMD = RbConfig::CONFIG['host_os'].downcase =~ /bsd|solaris/ ? "gmake" : "make"
27
+ TAR_CMD = SOLARIS_32 ? 'gtar' : 'tar'
28
+ PATCH_CMD = SOLARIS_32 ? 'gpatch' : 'patch'
29
+
30
+ if ENV['DEBUG']
31
+ puts "Setting debug flags."
32
+ $CFLAGS << " -O0 -ggdb -DHAVE_DEBUG"
33
+ $EXTRA_CONF = ""
34
+ end
35
+
36
+ def check_libmemcached
37
+ return if ENV["EXTERNAL_LIB"]
38
+
39
+ $includes = " -I#{HERE}/include"
40
+ $libraries = " -L#{HERE}/lib"
41
+ $CFLAGS = "#{$includes} #{$libraries} #{$CFLAGS}"
42
+ $LDFLAGS = "-lsasl2 -lm #{$libraries} #{$LDFLAGS}"
43
+ $LIBPATH = ["#{HERE}/lib"]
44
+ $DEFLIBPATH = [] unless SOLARIS_32
45
+
46
+ Dir.chdir(HERE) do
47
+ Dir.chdir(BUNDLE_PATH) do
48
+ ts_now=Time.now.strftime("%Y%m%d%H%M.%S")
49
+ run("find . | xargs touch -t #{ts_now}", "Touching all files so autoconf doesn't run.")
50
+ run("env CFLAGS='-fPIC #{LIBM_CFLAGS}' LDFLAGS='-fPIC #{LIBM_LDFLAGS}' ./configure --prefix=#{HERE} --libdir=#{HERE}/lib --without-memcached --disable-shared --disable-utils --disable-dependency-tracking #{$CC} #{$EXTRA_CONF} 2>&1", "Configuring libmemcached.")
51
+ end
52
+
53
+ Dir.chdir(BUNDLE_PATH) do
54
+ #Running the make command in another script invoked by another shell command solves the "cd ." issue on FreeBSD 6+
55
+ run("GMAKE_CMD='#{GMAKE_CMD}' CXXFLAGS='#{$CXXFLAGS} #{LIBM_CFLAGS}' SOURCE_DIR='#{BUNDLE_PATH}' HERE='#{HERE}' ruby ../extconf-make.rb", "Making libmemcached.")
56
+ end
57
+ end
58
+
59
+ # Absolutely prevent the linker from picking up any other libmemcached
60
+ Dir.chdir("#{HERE}/lib") do
61
+ system("cp -f libmemcached.a libmemcached_gem.a")
62
+ system("cp -f libmemcached.la libmemcached_gem.la")
63
+ end
64
+ $LIBS << " -lmemcached_gem -lsasl2"
65
+ end
66
+
67
+ def run(cmd, reason)
68
+ puts reason
69
+ puts cmd
70
+ raise "'#{cmd}' failed" unless system(cmd)
71
+ end
72
+
73
+ check_libmemcached
74
+
75
+ $CFLAGS << " -Os"
76
+ create_makefile 'rlibmemcached'
77
+ run("mv Makefile Makefile.in", "Copy Makefile")
78
+ run("sed 's/-I.opt.local.include//' Makefile.in > Makefile", "Remove MacPorts from the include path")
@@ -0,0 +1,7 @@
1
+ Brian Aker, brian@tangent.org -- Client Library, Tools
2
+ Mark Atwood, -- Tools, Docs
3
+ Patrick Galbraith, -- C++ Interface
4
+ Tim Bunce, -- Docs
5
+ Trond Norbye, trond.norbye@sun.com -- Binary protocol, Misc
6
+ Yin Chen, -- Ketama Work
7
+ Toru Maesaka, dev@torum.net -- Stats analysis
@@ -0,0 +1,32 @@
1
+ Software License Agreement (BSD License)
2
+
3
+ Copyright (c) 2007, TangentOrg (Brian Aker)
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are
8
+ met:
9
+
10
+ * Redistributions of source code must retain the above copyright
11
+ notice, this list of conditions and the following disclaimer.
12
+
13
+ * Redistributions in binary form must reproduce the above
14
+ copyright notice, this list of conditions and the following disclaimer
15
+ in the documentation and/or other materials provided with the
16
+ distribution.
17
+
18
+ * Neither the name of TangentOrg nor the names of its
19
+ contributors may be used to endorse or promote products derived from
20
+ this software without specific prior written permission.
21
+
22
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,303 @@
1
+ 0.32 Tue Sep 15 15:49:09 PDT 2009
2
+ * Change of behavior where linger is only modified for no-block and then
3
+ it is set to zero.
4
+ * Added Twitter's memcached_server_error() functions.
5
+ * Fix for OSX compiles in development builds.
6
+ * Updated C++ interface.
7
+ * Updated memcached_mget and memcached_mget_by_key to take a size_t
8
+ as a parameter instead of an unsigned int for number_of_keys.
9
+
10
+ 0.31 Fri Jul 10 09:02:50 PDT 2009
11
+ * Added support or HA via replication.
12
+ * malloc() removed for server key usage.
13
+ * Update build system.
14
+ * Added support for memcached_set_memory_allocators().
15
+ * Fixed bug in configure.ac for have_htoll.
16
+
17
+ 0.30 Sun May 31 17:31:52 PDT 2009
18
+ * Added memcachd_dump command (and framework for memdump tool).
19
+ * Realigned all structures to remove padding (and line up important bits for 64bit caches.
20
+ * Remove some of sprintf() in storage calls().
21
+ * Removed printf() in stat call for unknown stat member.
22
+ * memcached_generate_hash() function added.
23
+ * Added tests to make sure all hash functions are stable.
24
+
25
+ 0.29 Tue May 19 08:26:48 PDT 2009
26
+ * Fixed malloc usage to calloc for spots where we need zero filled memory.
27
+ * All code warnings now treated as errors.
28
+ * Fixes for debian packaging.
29
+ * Added new pooling mechanism.
30
+ * MEMCACHED_BEHAVIOR_NO_BLOCK no longer also sets MEMCACHED_BEHAVIOR_BUFFER_REQUESTS.
31
+ * Updated generic rpm.
32
+
33
+ 0.28 Tue Apr 14 18:56:28 PDT 2009
34
+ * Fixed bug in init sructure (reapplied)
35
+ * Fixed bug in get/set by key (nikkhils@gmail.com)
36
+
37
+ 0.27 Sun Mar 29 22:33:01 PDT 2009
38
+ * Added new UDP fire-forget mode.
39
+ * Reworked performance for mget() to better make use of async protocol
40
+ * Cleaned up execution of fetch (just one set of code now)
41
+ * Fixed Jenkin's for big endian hosts.
42
+ * Updates for memstat to determine network latency.
43
+ * Updates for binary protocol.
44
+ * Many updates to documentation.
45
+
46
+ 0.26 Thu Jan 29 13:05:50 PST 2009
47
+ * Fix for decrement on hash key
48
+ * Fixed assert that was catching bad memset() call in host_reset()
49
+ * Fix purge issue for blocked IO which has been stacked.
50
+
51
+ 0.25 Fri Nov 28 09:59:35 PST 2008
52
+ * Jenkins HASH added.
53
+ * Update of Murmur hash code
54
+ * Support explicit weights (Robey Pointer, Evan Weaver)
55
+ * Bugfix for ketama continuum (Robey Pointer)
56
+ * New behavior MEMCACHED_BEHAVIOR_HASH_WITH_PREFIX_KEY (Robey Pointer)
57
+ * Don't ever call stats for weighting servers, because it is unstable.
58
+
59
+ 0.24 Tue Sep 16 02:59:03 PDT 2008 (never released)
60
+ * Cleanup compile warnings.
61
+ * Fix issues in partitioning by keys.
62
+ * Fixed "fail case" to make sure when calling memcached_clone() no
63
+ memcached_st is over written.
64
+ * New memcached_server_by_key() method for finding a server from
65
+ a key.
66
+ * memcached_server_free() was added for freeing server structures.
67
+
68
+
69
+ 0.23 Sun Sep 7 08:13:59 PDT 2008
70
+ * Added strings.h header for Solaris 9
71
+ * Solaris 64bit fix.
72
+ * Support for weighted Ketama from Yin Chen.
73
+ * Fix for Chinese
74
+ * Fix for 0 length key to trigger bad key.
75
+ * Added behaviors MEMCACHED_BEHAVIOR_SND_TIMEOUT, MEMCACHED_BEHAVIOR_RCV_TIMEOUT
76
+ * Support for Binary Protocol added
77
+
78
+ 0.22 Mon Jul 14 09:24:11 PDT 2008
79
+ * Fix where master key was no being checked for "bad key"
80
+ * Fixed bugs in stats output (thread output was wrong)
81
+ * Clarified MEMCACHED_BAD_KEY_PROVIDED is return for bad prefix key.
82
+ * Found a bug in Flags return (Jacek Ostrowski)
83
+ * Fixed issue with compiling on Visual Studio
84
+
85
+ 0.21 Fri May 23 18:34:09 PDT 2008
86
+ * Change of char * to const char * for all key based functions.
87
+ * New MEMCACHED_CALLBACK_PREFIX_KEY added. You can now create domains for
88
+ values.
89
+ * Fixed bug introducd in last version on memcp
90
+ * Fix for death of file io to call shutdown()
91
+
92
+ 0.20 Mon May 5 08:34:26 PDT 2008
93
+ * New consistent distribution tests.
94
+ * Found a memory leak when a server constantly fails.
95
+ * Fix in watchpoint macro
96
+ * Changed default timeout to 1 second for poll timeouts
97
+ * Wheel uses less memory/dynamic allocation for size (no longer limited to
98
+ 512 hosts by default.
99
+ * memslap memory leak fix
100
+ * Added Ketama distribution
101
+ * Fix assert.h compile problem on CentOS
102
+
103
+ 0.19 Wed Apr 9 09:30:53 PDT 2008
104
+ * Documentation fix in libmemcached.
105
+ * Fixed bug where sort was always occuring on hosts
106
+ * Logic fix in branch prediction (thanks Jay!)
107
+ * Read through cached support.
108
+ * Fixed for cas by key operation.
109
+ * Fix for memcached_server_st list structures to have correct count.
110
+ * Added callback MEMCACHED_CALLBACK_DELETE_TRIGGER
111
+ * Removed function call in favor of macro (aka cut out some instructions)
112
+
113
+
114
+ 0.18 Sun Mar 16 21:57:55 PDT 2008
115
+ * Fix plus tests for non-zero value objects and flags.
116
+ * MEMCACHED_HASH_MURMUR added for murmur algorithm provided.
117
+ * MEMCACHED_BEHAVIOR_RETRY_TIMEOUT added to keep connecting from looping
118
+ on timeout.
119
+ * gcc branch prediction optimizations
120
+ * Refactored entire tree to make include files cleaner
121
+ * Fixed leaked socket.
122
+
123
+ 0.17 Wed Feb 27 03:33:29 PST 2008
124
+ * MEMCACHED_BEHAVIOR_CONNECT_TIMEOUT added for connect timeout in
125
+ non-block mode.
126
+ * Incompatible change in memcached_behavior_set() api. We now use a
127
+ uint64_t, instead of a pointer.
128
+ * Fix for storage of values for zero.
129
+ * memcached_server_cursor() function added to API for cycling through servers.
130
+
131
+ 0.16 Mon Feb 18 00:30:25 PST 2008
132
+ * Work on the UDP protocol
133
+ * Added get_by_key, set_by_key tests for C++ API
134
+ * Fix for limit_maxbytes to be 64bit in stats
135
+ * Added Atom Smasher test (scale baby, scale!)
136
+ * Servers are now sorted, meaning that servers are now ordered so that
137
+ clients with the same lists, will have same distribution. (Idea from
138
+ Ross McFarland). MEMCACHED_BEHAVIOR_SORT_HOSTS was added to enable
139
+ this support.
140
+ * Added MEMCACHED_BAD_KEY_PROVIDED error for auto, set, and get operations.
141
+ MEMCACHED_BEHAVIOR_VERIFY_KEY was added to enable this feature.
142
+ * More error messages on command line tools.
143
+ * Fixed bugs in memcached_cas() operator.
144
+ * Fix to loop through interfaces
145
+
146
+ 0.15 Tue Jan 29 14:55:44 PST 2008
147
+ * More work on the C++ API.
148
+ * Bug fixes around block corner cases.
149
+ * Slight performance increase in both read() and write().
150
+
151
+ 0.14 Tue Jan 22 06:21:49 PST 2008
152
+ * For for bug found by Evan Weaver where increment() was not returning
153
+ propper error of value was not found.
154
+ * Fix for bad null pointer on flag by Toru Maesaka.
155
+ * Refactor of all IO to just pass in the active server
156
+ * Problem configuring (PKG_CHECK_MODULES) fixed by removal of "rpath" in
157
+ support/libmemcached.pc.in (Thanks to Ross McFarland).
158
+ * Added memcached_callback_get()/set()
159
+ * First prototype of C++ interface
160
+ * Updated docs for uint16_t changes in previous release
161
+
162
+ 0.13 Sun Jan 13 06:51:50 PST 2008
163
+ * MEMCACHED_BEHAVIOR_USER_DATA added to store user pointer.
164
+ * Fix for failure to connect to invalidate socket.
165
+ * Patch from Marc Rossi to add --hash option for memcp, memrm, and memcat.
166
+ * Kevin's patch for fixing EOF issues during a read.
167
+ * Toru Maesaka patch for stats mismatch
168
+ * Fix for when CRC return 0
169
+ * Fixed uint16_t issues around flags. Turns out the documentation on the
170
+ protocol was wrong.
171
+ * Lingering socket fixes for FreeBSD.
172
+ * Patches from Kevin Dalley for FreeBSD 4.0
173
+ * Added multi delete functions.
174
+ * All get key returns have C style null termination
175
+ * If memcached_server_list_append is passed NULLs instead of pointers it
176
+ returns NULL.
177
+ * Added memcached_fetch_execute() method
178
+ * Found a bug where memcached_fetch() was not null terminating the result
179
+ value.
180
+ * memcached_behavior() now has the ability to set "buffering" so that
181
+ data is not automatically flushed.
182
+ * Behavior change, buffered commands now return MEMCACHED_BUFFERED
183
+
184
+ 0.12 Tue Dec 11 15:20:55 PST 2007
185
+ * Updates for consistent hashing
186
+ * IPV6 support
187
+ * Static allocation for hostname (performance)
188
+ * Fixed bug where in non-block mode all data might not have been sent on
189
+ close().
190
+ * Refactor of memcached_get() to use common code.
191
+ * Change in value fetch, MEMCACHED_END is now returned when keys are no
192
+ longer in the pipe.
193
+ * Fixed bug where key could be out of range of characters
194
+ * Added _by_key() methods to allow partitioning of values to particular
195
+ servers.
196
+ * MEMCACHED_DEFAILT_TIMEOUT is now set to a non -1 value.
197
+ * Performance improvements in get operations.
198
+
199
+ 0.11 Mon Nov 26 01:05:52 PST 2007
200
+ * Added option to memcache_behavior_set() so that poll() can be timed out.
201
+ * Fixed memory leak in case of using memcached_fetch_result() where no
202
+ value was returned.
203
+ * Bug fixed in memcached_connect() which would cause servers that
204
+ did not need to be enabled to be enabled (performance issue).
205
+ * Rewrote bounds checking code for get calls.
206
+ * "make test" now starts its own memcached servers.
207
+ * Added Hseih hash (MEMCACHED_HASH_HSIEH), which is showing about 7%
208
+ performance over standard hash.
209
+
210
+ 0.10 Tue Nov 20 23:22:31 PST 2007
211
+ * Added append binary test.
212
+ * Added MEMCACHED_BEHAVIOR_CACHE_LOOKUPS behavior so that you can save on
213
+ multiple DNS lookups.
214
+ * Added CAS support, though this is optional and must be enabled during
215
+ runtime.
216
+ * Added the utility memerror to create human readable error strings
217
+ from memcached errors (aka convert ints to strings)
218
+ * Fixed type in MEMCACHED_HOST_LOOKUP_FAILURE
219
+ * Fixed bug where hostname might not be null terminated
220
+ * Moved to using gethostbyname_r() on Linux to solve thread safety issue
221
+ * Added -rpath support for pkg-config
222
+ * Documentation fix for hash setting using memcached_behavior_set()
223
+
224
+ 0.9 Thu Nov 15 07:44:00 PST 2007
225
+ * fix for when no servers are definied.
226
+ * different buffers are now kept for different connections to
227
+ speed up async efforts
228
+ * Modified increment/decrement functions to return uint64_t values
229
+ * Fixed bug in cases where zero length keys were provided
230
+ * Thread cleanup issue in memslap
231
+ * No hostname lookup on reconnect
232
+ * Fix for flag settings (was doing hex by accident!)
233
+ * Support for 1.2.4 server additions "prepend" and "append" added.
234
+ * Added memcached_version()... not sure if I will make this public
235
+ or not.
236
+
237
+ 0.8 Mon Nov 5 10:40:41 PST 2007
238
+ * Adding support for CRC hash method
239
+ * Adding support for UNIX sockets
240
+ * Added additional HASHing methods of FNV1_64,FNV1A_64, FNV1_32, FNV1A_32
241
+ * Added pkgconfig support (PKG_CHECK_MODULES)
242
+ * Fixed conflict with defined type in MySQL
243
+ * Added memcached_result_st structure and functions to manipulate it.
244
+
245
+ 0.7 Tue Oct 30 09:24:05 PDT 2007
246
+ * Poved to poll() from select()
247
+ * Fixes in internal string class for allocation of large numbers of
248
+ strings.
249
+ * memcached_mget() function now sends keys as it parses them instead of
250
+ building strings as it goes.
251
+ * Propper flush now for making sure we get all IO sent even when in
252
+ non-block mode.
253
+ * Added --enable-debug rule for configure
254
+ * All asserts() removed (hey this is going into production!)
255
+
256
+
257
+ 0.6 Wed Oct 17 08:41:35 PDT 2007
258
+ * get value returns are now null terminated (request by Cal Heldenbrand)
259
+ * Fixed connections for more hosts then two.
260
+ * Rewrite of the read/write IO systems to handle different sorts of host
261
+ failures.
262
+ * Added man pages for all functions and tools
263
+ * Raised buffer size for readinng/writing to 16K
264
+ * You can now optionally set the socket size for recv/send via
265
+ memached_behavior_set/get.
266
+
267
+ 0.5 Tue Oct 9 00:22:25 PDT 2007
268
+ * Ruby maintainer mentioned TCP_NODELAY patch he had added. Added this to C
269
+ library as well. (Eric Hodel drbrain@segment7.net)
270
+ * Added support script for set_benchmark
271
+ * Updated memslap to allow testing of TCP_NODELAY
272
+ * Updated memslap to support --flush (aka dump memcache servers before
273
+ testing)
274
+ * Fixed bug in multiple hosts not being activated
275
+ * Added environmental variable MEMCACHED_SERVERS which can be used to
276
+ set the servers list.
277
+ * fixed memcached_stat method (and now memstat works)
278
+ * server connect now happens on demand.
279
+ * Help for all command line applications
280
+
281
+ 0.4 Wed Oct 3 10:28:50 PDT 2007
282
+ * Added buffered IO to write calls for keys
283
+ * Added buffered IO for reads
284
+ * memstat was broken (bad if/else on connect)
285
+ * New non-blocking IO (not default yet). Mucho faster
286
+ * Refactor of test system.
287
+ * memslap crash solved
288
+
289
+ 0.3 Mon Oct 1 06:37:52 PDT 2007
290
+ * Jeff Fisher <guppy@techmonkeys.org> provided a spec file
291
+ * Added "make rpm" around dist file
292
+ * Added support for Solaris
293
+ * Added support for DTrace
294
+ * Fixed read to be recv and write to be send
295
+ * Bug fix where memstat would core if no server was found
296
+ * Added memslap tool (load generator)
297
+ * Numerous bug fixes in library
298
+ * Added calls to library for creating host lists (see
299
+ text cases to understand how to use this).
300
+
301
+ 0.2 Thu Sep 27 03:46:57 PDT 2007
302
+ * First public version
303
+