Tagged Questions
A gem for mapping Ruby objects to Redis.
6
votes
2answers
3k views
Dumping all key/value pairs in a Redis db
I'm using an ORM called Ohm in Ruby that works on top of Redis and am curious to find out how the data is actually stored. I was wondering if there is way to list all the keys/values in a Redis db.
...
4
votes
3answers
633 views
Migrating Delphi DFM's with special characters to D2009
I've got a number of Delphi forms where we use a couple of special characters - the 'degree' symbol, and the 'ohms' symbol. These characters are used in label captions saved in the DFM file and are ...
2
votes
2answers
475 views
Ohm & Redis: when to use set, list or collection?
What is the difference between a collection and a set or list when using Ohm & Redis?
Several of the Ohm examples use a list rather than a collection (see the list doc itself):
class Post < ...
1
vote
2answers
91 views
Setting a dynamic field in Ohm / Redis
How do I set a field dynamically for a Ohm object?
class OhmObj < Ohm::Model
attribute :foo
attribute :bar
attribute :baz
def add att, val
self[att] = val
end
end
class OtherObj
...
1
vote
1answer
323 views
Converting Ohm model tree into a JSON structure
I have a tree of Ohm models. A Game has Players, a Player has Pieces. The full details are below. Basically, when I go to render the structure as json, I see an encoding error:
NoMethodError ...
1
vote
2answers
510 views
Is it possible to update model attributes using Ohm and Redis DB is Ruby?
I'm taking a first look at Monk and the Ohm/Redis APIs and I have a simple question. Is it possible to update attributes on model objects using Ohm/Redis?
class Event < Ohm::Model
attribute ...
0
votes
1answer
116 views
Many-to-many relationships with Ruby, Redis, and Ohm
I'm attempting to create a many-to-many relationship in Redis using Ohm. As an example, I have Book and Author models defined as follows:
class Book < Ohm::Model
attribute :title
set ...
0
votes
1answer
45 views
How do you push an element onto a list dynamically in Redis/Ohm?
This is a follow-up to this question: Setting a dynamic field in Ohm / Redis
I'm unable to find the method that I can use with the send() method, to dynamically be able to add an object to an unknown ...