akiradeveloper / akashic-storage

Filey system backed S3-compatible storage in Scala/Akka-Http
Apache License 2.0
22 stars 2 forks source link

KV-store backend (twitter.storehaus) #77

Open akiradeveloper opened 8 years ago

akiradeveloper commented 8 years ago

I am thinking of making a backend for storehaus (https://github.com/twitter/storehaus) which is a facade for various KV-stores.

It should be testable at least by switching the config. Should refactor the sbt-test.

akiradeveloper commented 8 years ago

I think there are potential users who want to use S3 protocol with distributed KV-store backends. It's fast and scalable. The interface of simple PUT/GET interfaces S3 nicely.

Or, should I first make a backend for such simple Map-like interface and storehaus will be the sub-backend of the interface? Now the backend block can be nestable.

akiradeveloper commented 8 years ago

If the KV-store's key is string and the value is byte array then it's very versatile.