Guy Royse
Guy Royse
One of the items in my backlog—at an admittedly lower priority—is to add a "keys provided" option to Redis OM so that it doesn't generate the ULID and expects you...
That's a really good idea. The problem right now is that the ID is generated before there is any data. `.create()` just creates an empty Entity and sets the ID....
This is a desired future feature and is on the road map.
Right after sorting.
Regarding transactions, I think this is an interesting idea. I'll consider it in the future. Regarding nesting objects and relationships, this has been asked a couple of different times by...
This sounds like an issue for [Node Redis](https://github.com/redis/node-redis/issues).
Or were you thinking it would be nice to return the Distance when you do a GEO search with Redis OM? If that's the case, I'll mark this as an...
Ya. We should do that. RediSearch supports it, we're just not implementing it. I'll mark this as an enhancement. Thanks for point it out!
Could also make this variadic so you can say `.where('foo').eq('alfa', 'bravo', 'charlie')` as well as `.where('foo').eq(['alfa', 'bravo', 'charlie'])`.
Creating more deeply nested objects is something I would like to add to Redis OM as right now the implementation is flat. However, doing this is not as simple as...