redis-om-node
redis-om-node copied to clipboard
Object mapping, and more, for Redis and Node.js. Written in TypeScript.
First of all, let me thank you for this cool library :) Now, I'm really considering using Redis Enterprise as a primary DB in the future projects! So, my question...
Right now you have to pass in an Entity to the Repository. It would be great to be able to call `.save` right on the Entity. This pairs nicely with...
Suppose we have the following JSON object stored in Redis: ``` { essentialKey: "essentialValue", optionalKey: "optionalValue" } ``` I now want to access this information using the following schema: ```...
Hello, Could we have the ability to sort location with distances when searching with points of longitude & latitude
Solve issues #109
Hi, I just found a problem in my project which uses the redis-om-node package. My redis database changes over time, and the schema also. Some entities contain extra fields which...
Hi, it would be great to have some kind of adapter API for third party Redis clients such as `ioredis`. This would eliminate the need to mix `ioredis` and `redis`...
> The query to RediSearch had a syntax error: \"Syntax error at offset 7 near objectId\".\nThis is often the result of using a stop word in the query. Either change...
I have a search query that looks something like this: ```ts const image = await repository .search() .where("slug") .eq(slug) .and("domain") .eq(domain || "") .first(); ``` However, upon running this, I...
It seems like the current version of `redis-om` does not have any support for a custom repository entity type. Apparently, the `Entity` type is hard coded into the `Repository` class...