database - object storage in git -


doing stuff "git ls-files" on big repos have noticed git quite fast in regard, subjectively faster "find . -type f" think (although haven't done benchmarks).

is git using sort of binary key-value data store internally storing blobs/deltas, berkeley db or tokyo cabinet?

yes git key-value store. more technical name content-addressable file system. kind of data stored within git can retrieved using key, sha-1 hash. there whole section on git objects in git book


Comments

Popular posts from this blog

blackberry 10 - how to add multiple markers on the google map just by url? -

php - guestbook returning database data to flash -

java - Using an Integer ArrayList in Android -