Why you should migrate from RediSQL to zeeSQL
Secondary indexes, or search by value
Better API
Return type and column name
127.0.0.1:6379> REDISQL.V1.CREATE_DB DB
OK
127.0.0.1:6379> REDISQL.V1.EXEC DB "create table foo(a, b, c);"
1) DONE
2) (integer) 0
127.0.0.1:6379> REDISQL.V1.EXEC DB "insert into foo values(1 , 'aaa', 2)"
1) DONE
2) (integer) 1
127.0.0.1:6379> REDISQL.V1.EXEC DB "select * from foo;"
1) 1) (integer) 1
2) "aaa"
3) (integer) 2
127.0.0.1:6379> ZEESQL.EXEC DB COMMAND "select * from foo;"
1) 1) "RESULT"
2) 1) "a"
2) "b"
3) "c"
3) 1) "INT"
2) "TEXT"
3) "INT"
4) 1) (integer) 1
2) "aaa"
3) (integer) 2Structured returns
The JSON flag
Arguments to the EXEC and QUERY command
Maintainance
Backward compatibility
Last updated