Reqlite lets you query Redis with SQL ↦
Patrick DeVivo:
This is a project in Go that compiles to a SQLite runtime loadable extension, which brings Redis commands into a SQL context. This allows you to write SQL queries against data in a Redis instance, using Redis commands like
LRANGE
as SQL functions.
Experimental for now. But why? Patrick says:
In general, Redis is fairly accessible from many programming languages, and any query using reqlite could probably be implemented in a language of your choice using a Redis client. However, sometimes declarative SQL can be a better choice to express what you’re looking for, and that’s where this project may be most useful.
Discussion
Sign in or Join to comment or subscribe