DiceDB / dice

DiceDB is an in-memory database for building real-time applications with SQL-based real-time reactivity.
https://dicedb.io/
Other
3.31k stars 419 forks source link

Replace regex matching with wildcard matching for DSQL queries #167

Closed JyotinderSingh closed 1 month ago

JyotinderSingh commented 1 month ago

Presently, the DSQL selector clause is treated as a regex matcher, however, the feature set implementation is limited to wildcard matching (and plans to stay like that for the foreseeable future).

It will be more efficient to update this to a pure wildcard matching logic for better efficiency.

Reference: https://github.com/DiceDB/dice/blob/master/core/regex.go

Dev79844 commented 1 month ago

Hey I would like to work on this issue.

JyotinderSingh commented 1 month ago

Hey I would like to work on this issue.

Assigned.

Dev79844 commented 1 month ago

Added a PR #169