Dmitry Simonenko

Results 106 comments of Dmitry Simonenko

Probably you have missed recursive flag during clone: `git clone --recursive`

``` git clone --recursive git://github.com/pmwkaa/ioarena.git cd ioarena/ cmake -DENABLE_ROCKSDB=ON # or any other supported database make ```

Hi. Ioarena implemented as a stand-alone application at the moment, but i think it is possible to split it into separate parts (preferably inside one project): library and tool parts....

i'll fix this as soon as i peek some time :) thanks

Hi, the reason to introduce BEGIN/COMMIT/ROLLBACK is to distinct new interactive multi-statement transactions from the model used in Redis. Interactive means that each operation run within an transaction is not...

Hi, the short list of supported commands are presented on the web-site (at the bottom). But i'm agree that this should be more clear and explicitly documented. This will be...

At the moment Sophia does not support Windows (but there were Windows port made by @stanhuff for version 1.1 https://github.com/stanhuff/Sophia). I'm not a Windows developer and i have no resources...

Yes, you should copy returned key-value and destroy the object. ``` C if ( (obj= sp_object(db)) != 0 && sp_set(obj,"key",key,strlen(key)) == 0 ) result = sp_get(db,obj); // only two arguments,...

Thanks) String can be anything, there are no constrains about it. Do you need to index values as well? Can you describe your use case?

Sounds like you need support of secondary indexes, but with value copy to reduce read times. You can try to set(key, value) and set(value, key) or use second database which...