|
|
|
|
|
by dvirsky
3698 days ago
|
|
Actually the post explains the motivation well. The basic idea is to add capabilities to redis at native speeds, without having to either convince antirez that they're necessary or forking redis. I work for Redis Labs, and over the course of the past few weeks we've experimented with some modules using the API.
Some of the things we did that might answer some of your questions: a PAM based authentication module, which IIRC can plug into LDAP potentially. A bloom filter implementation on top of bitmaps. An inverted index that doesn't use existing data types but rather creates compressed indexes directly using redis strings (I wrote that one personally BTW) An API to store images on redis and retrieve them resized or cropped. So right now the only way to create new data types is to piggyback strings as raw memory, but the final version of the API will include actually registering new data types. You can see the modules we've released here: https://github.com/RedisLabsModules/ |
|
This breaks my normal browsing habit of opening new tabs as I see something that interests me, but waiting until I finish skimming the list to read.