0.1.2 • Published 8 years ago

level-blob-store v0.1.2

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

level-blob-store

npm.io npm.io npm.io Build Status npm.io Dependency Status js-standard-style

A abstract-blob-store compatible implementation built using leveldb as the storage backend

npm.io

Description

Implements abstract-blob-store interface, uses leveldb as the backend storage. leveldb is pretty awesome btw

Disclaimer: As Max Ogden pointed out at https://github.com/maxogden/abstract-blob-store/issues/19#issuecomment-165211290, levelDB:

  • LevelDB doesn't support streaming file writes, so values must fit in memory.
  • In Google LevelDB compaction is notoriously inefficient in heavy write scenarios, so writing large quantities of data will likely result in lots of CPU thrashing.

API

See abstract-blob-store