Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

filekv

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

filekv

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

filekv

Synopsis

filekv is a simple, file-based key-value store which uses csv from the Ruby standard library to store data on a key-value model in a file.

It is modeled as a drop-in replacement for redis-rb. In other words, it can be used, to some extent, as an alternative data storage means by applications designed for Redis.

Naturally, it does not replicate the entire featureset of Redis, and so applications should bear this in mind.

Usage

Some basic usage:

require 'filekv'

db = FileKV.new 'moo.db'

db.set 'foo', 'bar'
db.get 'foo'
# => "bar"

Author

filekv was written by Autumn Perrault.

License

filekv is distributed under the terms of the MIT license. Please see the LICENSE file.

FAQs

Package last updated on 24 Jan 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc