johm
johm copied to clipboard
JOhm is a Object-hash mapping library for Java for storing objects in Redis
I wanted to create an object that just keeps a one-to-many association, so I created model classes like these (getters and setters removed): ``` java @Model public class Student {...
@Model public class MyGreatModel { @Reference @Indexed MyGreatModel relatedMyGreatModel; } crashes everything. The problem is that JOhm.get calls, JOhm.fillField which then calls JOhm.get.
Is it possible for jOhm to include commands on database such as "select", "flushdb"? Thanks, Peter
Is it possible for jOhm to include commands on database such as "select", "flushdb"? Thanks, Peter
Hi Jonathan and Gaurav, Is it possible set the expire time for an object like the command "expire" in Redis? Thanks, Peter
We should do something like https://github.com/xetorthio/seek, so we can have a nice search api. Also we should have between, < and >
Something like: class User { @Listen(Item.class) public void onItem() { } } It will be tricky to filter on object fields but we can pass those as an array in...
The following assertions are not true: assertEquals(user1.getId(), users.get(0).getId()); assertEquals(user3.getId(), users.get(1).getId());
We should publish an error dictionary of all the errors that can be thrown as JOhmException's so that users can setup mechanisms to be able to explicitly respond to a...
To investigate - we need to wire in pipelined jedis commands to improve performance where possible.