https://github.com/krisleech/simple_store
Store buckets of keyed hashes in memory or to disk, useful for testing without a real database.
https://github.com/krisleech/simple_store
Last synced: about 1 year ago
JSON representation
Store buckets of keyed hashes in memory or to disk, useful for testing without a real database.
- Host: GitHub
- URL: https://github.com/krisleech/simple_store
- Owner: krisleech
- License: mit
- Created: 2012-12-01T01:02:50.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-04-04T15:49:53.000Z (about 13 years ago)
- Last Synced: 2025-03-17T04:44:47.113Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# SimpleStore
Store buckets of keyed hashes in memory or to disk, useful for testing without a real database.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'simple_store'
```
## Usage
### Memory Store
```ruby
person = { :id => 1, :first_name => 'Kris', :last_name => 'Leech' }
store = SimpleStore::Memory.new(:people)
store.put(person)
# some seconds later...
store.get(1) # => { ... }
```
### Disk Store
```ruby
person = { :id => 1, :first_name => 'Kris', :last_name => 'Leech' }
store = SimpleStore::Disk.new(:people)
store.put(person)
# some days later...
store = SimpleStore::Disk.new(:people)
store.get(1) # => { ... }
```
### Example
```ruby
require 'virtus'
require 'guid'
class Person
include Virtus
attribute :id, String, :default => Guid.new.to_s
attribute :first_name
attribute :last_name
def ==(person)
id == person.id
end
end
class PeopleTable < SimpleStore::Disk
def initialize
super(:people)
end
def put(person)
super(person.attributes)
end
def get(id)
Person.new(super(id))
end
end
describe 'storing a domain object to disk' do
it 'domain objects can be stored and retrieved from the store' do
person = Person.new
person.first_name = 'Kris'
person.last_name = 'Leech'
table = PeopleTable.new
table.put person
table.get(person.id).should == person
end
end
```
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request