public
Description: StrokeDB is an embeddable distributed document database written in Ruby
Homepage: http://strokedb.com/
Clone URL: git://github.com/yrashk/strokedb.git
added debug message to store.rb
oleganza (author)
Sat Jun 14 12:13:48 -0700 2008
commit  22034e62e6efe957aea5ffb12b5720e07d3f87a2
tree    f722239a5ea50b4a62e41cd303a239f89652e68b
parent  e208d671208182cb6466672882626335217e073b
...
17
18
19
 
20
21
22
...
17
18
19
20
21
22
23
0
@@ -17,6 +17,7 @@ module StrokeDB
0
     end
0
 
0
     def find(uuid, version=nil, opts = {}, &block)
0
+      #puts "Store#find: #{uuid} v. #{version.inspect} (#{opts.inspect})"
0
       @storage.find(uuid,version,opts.merge(:store => self),&block)
0
     end
0
 

Comments