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
Post a Comment