tporadowski / redis

Native port of Redis for Windows. Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs. This repository contains unofficial port of Redis to Windows.
http://redis.io
Other
9.04k stars 1.09k forks source link

Search module? #101

Closed DankMemeGuy closed 3 years ago

DankMemeGuy commented 3 years ago

Not a bug, but there wasn't any other options:

Is there any way to add the RediSearch module? I use RedisInsight and when I click on any of the module options it tells me to install them, but I can't seem to find any Windows ones. Let me know if this doens't exist or I'm at the wrong place to ask. Thank you!

tporadowski commented 3 years ago

Modules are supported, but the main problem is that they need to be compiled under Windows to a DLL. They are written mostly with main Redis in mind (thus targeting mostly Linux), so they may require adjustments. So far I've managed to only port RedisJSON to test a real-life module in Redis for Windows, and I have no idea what effort it would be for any other module.