Simon Prickett

Results 76 issues of Simon Prickett

I can get information about how many items were inserted into the Bloom Filter from `BF.INFO` by parsing the result out: ```bash 127.0.0.1:6379> bf.madd somebloom the quick brown fox ran...

enhancement

Updates the `examples` folder, moving everything to use top level `await`, improving command reference links, and fixing a couple of small issues.

Documentation

Updates the sorted set example to show use of the `REV` modifier to the `ZRANGE` command (Redis >= 6.2). Closes #2100

Documentation

The `ZREVRANGE` command isn't implemented. This is considered deprecated as of Redis 6.2.x but many people will be working with older versions of the Redis server for some time and...

feature

Adds `ZREVRANGE` and `ZREVRANGEWITHSCORES` commands: ```javascript const client = createClient(); await client.connect(); await client.zAdd('mysortedset', [ { score: 99, value: 'Ninety Nine' }, { score: 100, value: 'One Hundred' }, {...

feature

Refactor the scripts in the `examples` folder to use top level await / be modules... and change the contribution guildelines in the README.

Documentation

Amend the sorted set example script to show `REV`. Script is: https://github.com/redis/node-redis/blob/master/examples/sorted-set.js

Documentation

Jedis doesn't seem to support the exclusive range intervals feature added in Redis 6.2 for the `XRANGE` command: > The range is close (inclusive) by default, meaning that the reply...

This client needs to support RediSearch aggregations / `FT.AGGREGATE`.

enhancement