summaryrefslogtreecommitdiff
path: root/git/test/performance/db
Commit message (Collapse)AuthorAgeFilesLines
* util: pick the type of memory manager based on the python version, to have ↵Sebastian Thiel2011-07-051-4/+3
| | | | | | | optimal results in all cases (at least the ones I can test) pack: now works properly with a sliding memory manager test_packedodb_pure: fixed very memory hungry implementation by using an iterator. This will of course reduce the measured performance a bit, but 750MB of memory is just a little bit too much for an ordinary test. Maybe it would be alright to just reduce the number of items ... but performance isn't a strength of python after all
* Improved pack writing test to show that the pack generation can be lightning ↵Sebastian Thiel2011-06-061-21/+28
| | | | fast with nearly now overhead if the data streams in fast enough (~30 MB/s when writing a pack). This shows that there is huge potential for sending packs, considering that we are actually recompressing them (without deltification). To be faster in future, we could probably just send ref-deltas or full objects as found in the pack without doing any recompression.
* Fixed performance pack writing tests. As they are actually depent on the ↵Sebastian Thiel2011-06-061-0/+76
| | | | database (as streams have to be decompressed, it should be redesigned to have multiple database implementations)
* Added loose object writing and reading performance tessts, in pure and ↵Sebastian Thiel2011-06-063-0/+149
| | | | command implementations. The previous performance test was truncated a bit as it compared directly with the git hash_object write performance. This is out, and if we wanted it we could implement it , but its actually slower for us
* Added PackedDB test with generalized type to allows other implementations to ↵Sebastian Thiel2011-06-063-1/+114
| | | | be tested as well at some point
* Fixed packed ODB test, in preparation for separating the type to allow ↵Sebastian Thiel2011-06-061-0/+4
| | | | future implementations to use the test as well
* Fixed odb performance testsSebastian Thiel2011-06-064-0/+82