libgit2 / libgit2-backends

Standalone ODB backends for the libgit2 library
191 stars 54 forks source link

Does this mean git is backed by redis if i use the redis backend? #6

Open hwongcom opened 9 years ago

hwongcom commented 9 years ago

Does this mean git is backed by redis if i use the redis backend?

Is there one developed for ssdb from ideawu?

t0xicCode commented 9 years ago

It means that the git objects (files, commits, etc.) files are stored in redis. If ssdb is API compatible with redis, the redis backend will work with it.

charypar commented 9 years ago

@hwongcom basically yes. Objects and refs get stored in Redis. Unless something changed, Redis backend can't deal with packed refs, so clones for instance won't work, if I understand correctly.