redis-om-node
redis-om-node copied to clipboard
Object mapping, and more, for Redis and Node.js. Written in TypeScript.
Entities are fine, but sometimes you just need to JSON. Do this as a JavaScript object as well as a JSON string to save on the call to `.stringify`.
I've been experimenting with the [Vector similarity](https://redis.io/docs/stack/search/reference/vectors/) feature and have some uses for it (with both text and images) so plan on adding support when I have chance. Early thoughts...
I know the library is in active development right now but it would be really nice to have it ASAP. Thanks for your code :)
In my opinion it wasnt a proper logger, also `console.info` and `console.debug` are alias to `console.log` they dont do anything else
Hi there, I am not really experienced with redis or schemas and stuff and this is what I wanted to use: Schema: ```json { ID: string, warns: [ { reason:...
It'd be nice to provide a default value to a Schema so that when an Entity is created, you don't have to set a field if you don't want to....
This is a bit of a contrived example but given the following schema how would you suggest to maintain unique entities? ``` typescript class BlogPost extends Entity {} const schema...
I am requesting a new feature to implement implicit transaction and locking in the context of redis-om for master-detail relations. Please see the code snippet below that illustrates the desired...
Hello, how can I fetch entities by ids? sth like ```ts const albumsEntities = await albumRepository.fetch([albumId1, albumId2 ...]) // or const albumsEntities = await albumRepository.fetch(albumId1, albumId2 ...) ```