Remix.run Logo
antirez 2 hours ago

Once I realized arrays were a great fit for text files, many use cases I could conceive were always limited by the fact we need to grep on files. So I thought: what is the AROP equivalent for files? ARGREP. Then I made sure to add both fast, exact and regexp matching so that depending on the use case the best tool could be used. I then discovered that for many OR-ed strings regexps could be the faster way if we'll optimized. And then I specialized TRE a bit.

simonw 2 hours ago | parent [-]

Are there other existing Redis data types and features that might benefit from integrating TRE?

antirez an hour ago | parent [-]

KEYS comes immediately to mind :)