Skip to content

Commit

Permalink
Update manifest; add '--only' to benchmark in preparation for valgrind.
Browse files Browse the repository at this point in the history
  • Loading branch information
evan committed Feb 2, 2008
1 parent b32bc94 commit be58604
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -1,4 +1,6 @@

v0.7. Rails compatibility wrapper; real multiget.

v0.6. Better documentation; benchmark suite; improve buffered IO API; remove namespace accessor in favor of generic options hash; patch up extconf.rb to handle unusual library situations; increase test coverage.

v0.5. First release.
2 changes: 2 additions & 0 deletions Manifest
Expand Up @@ -13,6 +13,7 @@ lib/memcached/behaviors.rb
lib/memcached/exceptions.rb
lib/memcached/integer.rb
lib/memcached/memcached.rb
lib/memcached/rails.rb
lib/memcached.rb
LICENSE
Manifest
Expand All @@ -25,4 +26,5 @@ test/teardown.rb
test/test_helper.rb
test/unit/binding_test.rb
test/unit/memcached_test.rb
test/unit/rails_test.rb
TODO
3 changes: 1 addition & 2 deletions TODO
Expand Up @@ -4,8 +4,7 @@ Can happen any time:
* real multiget
* look for memory leaks

Waiting on libmemcached 0.14:
Waiting on libmemcached 0.16:

* verify version
* CAS support
* passing missing increment/decrement tests
17 changes: 10 additions & 7 deletions test/benchmark/benchmark.rb
Expand Up @@ -6,14 +6,17 @@
require 'benchmark'
require 'rubygems'

begin
require 'memcache'
rescue LoadError
end

begin
require 'caffeine'
rescue LoadError
unless ARGV[0] == "--only"
begin
require 'memcache'
rescue LoadError
end

begin
require 'caffeine'
rescue LoadError
end
end

# We'll use a simple @value to try to avoid spending time in Marshal,
Expand Down

0 comments on commit be58604

Please sign in to comment.