metropolis.git  about / heads / tags
key-value store for Rack
$ git log --pretty=format:'%h %s (%cs)%d'
2935c3a Rakefile: kill raa_update task (2013-09-30)
	(HEAD -> master)
f28a47d cleanup gemspec (2011-01-17)
59f3040 metropolis 0.2.0 - suffix_mime, small optimizations (2011-01-17)
	(tag: v0.2.0)
dec261a tdb: remove "threadsafe" option (2011-01-17)
2c91334 use constants everywhere to reduce GC thrashing (2011-01-17)
34a1852 tdb: use fetch with a reusable buffer (2011-01-17)
3f821a4 add suffix_mime output filter (2011-01-13)
d4c2bb3 README: mention TDB database (2011-01-13)
b067ae6 COPYING is not an RDoc file (2010-12-24)
bf3148f switch to wrongdoc, no more JavaScript! (2010-12-24)
...

$ git cat-file blob HEAD:README
= \Metropolis: a key-value store for Rack

\Metropolis is a Rack application used to store key value pairs.  It
seeks to emulate the TokyoTyrant HTTP interface, but allows access to
multiple databases through a single TCP port.  It hashes keys to split
keys between different on-disk databases to work around scalability
limitations of the kernel, hardware and filesystem.

== Features

* Currently supports the {TDB}[http://bogomips.org/ruby-tdb/] database
  along with the TokyoCabinet hash database format, other database
  formats will be supported along with KyotoCabinet, as well as other
  key-value stores.

* Compatible with all Rack-compatible servers

== Hacking

You can get the latest source via git from the following locations:

  git://git.bogomips.org/metropolis.git
  git://repo.or.cz/metropolis.git (mirror)

You may browse the code from the web and download the latest snapshot
tarballs here:

* http://git.bogomips.org/cgit/metropolis.git (cgit)
* http://repo.or.cz/w/metropolis.git (gitweb)

Inline patches (from "git format-patch") to the mailing list are
preferred because they allow code review and comments in the reply to
the patch.

We will adhere to mostly the same conventions for patch submissions as
git itself.  See the Documentation/SubmittingPatches document
distributed with git on on patch submission guidelines to follow.  Just
don't email the git mailing list or maintainer with \Metropolis patches.

== Contact

All feedback (bug reports, user/development discussion, patches, pull
requests) go to the mailing list: mailto:metropolis@librelist.org

Mailing list archives in mbox format may be downloaded here:

http://metropolis.bogomips.org/archives/

# heads (aka `branches'):
$ git for-each-ref --sort=-creatordate refs/heads \
	--format='%(HEAD) %(refname:short) %(subject) (%(creatordate:short))'
* master       Rakefile: kill raa_update task (2013-09-30)

# tags:
$ git for-each-ref --sort=-creatordate refs/tags \
	--format='%(refname:short) %(subject) (%(creatordate:short))'
v0.2.0       metropolis 0.2.0 - suffix_mime, small optimizations (2011-01-17) tar.gz
v0.1.0       metropolis 0.1.0 - initial release (2010-12-13) tar.gz

git clone https://yhbt.net/metropolis.git