rediSQL
rediSQL copied to clipboard
Redis module that provides a completely functional SQL database
This issues will hopefully serve RediSQL is designed to use one thread for each database. This simplify a lot the design but it limits the throughput a lot. There are...
RediSQL support multiple statements in the same "EXEC", hence it is possible and correct to do something like: ``` REDISQL.EXEC DB "INSERT INTO foo VALUES(1,2,3); INSERT INTO bar VALUES(2,3,4);" ```...
With the new rust compiler is possible to select a global allocator. Maybe it is a simple way to use the Redis allocator in all the module with ease.