Skip to content
This repository was archived by the owner on Jul 11, 2021. It is now read-only.

Releases: RedBeardLab/rediSQL

v0.9.3

Choose a tag to compare

@siscia siscia released this 04 Apr 13:57

Fix bugs on the RDB for file backed databases

v0.9.2

Choose a tag to compare

@siscia siscia released this 17 Mar 18:25

Add telemetrics to free version

v0.9.1

Choose a tag to compare

@siscia siscia released this 14 Mar 14:05
Release fix for double copy

v0.9.0

Choose a tag to compare

@siscia siscia released this 08 Mar 19:34
Add REDISQL.STATISTICS command

v0.8.0: The .INTO family of commands allow to write the result of a query into a

Choose a tag to compare

@siscia siscia released this 10 Feb 17:48
stream and to not return it directly. Those commands can be used to implement
cursors.

The command do not take care of removing a stream, since the stream
could be used also as a cache.

Moreover the command just append to the stream provide in input, even if
it already contains something.# Write a message for tag:

v0.7.1

Choose a tag to compare

@siscia siscia released this 14 Oct 13:25

Fix big int bug #31 with #32

COPY command for backups and loading databases

Choose a tag to compare

@siscia siscia released this 24 Sep 17:04

This release adds a new command, the COPY command.

COPY overwrite a database into another.

It makes possible to easily save in-memory databases into disk or load disk-based databases into memory.

It is also quite useful for backups and to restore, not to mention that allow to initialize a database with a status.

Start integration between SQLite and Redis.

Choose a tag to compare

@siscia siscia released this 25 Jul 14:36

Now the SQL statements and queries have access to the Redis context,
which is necessary to invoke regular, redis command like HGET or SCAN.

These capabilities have been immediately exploited and we create a
virtual table that read redis hash(es).

The name of the virtual table is REDISQL_TABLES_BRUTE_HASH

Improving performances, more deploy options and trial version

Choose a tag to compare

@siscia siscia released this 28 May 21:03

This release does not introduce any new features but it does improve the performances significantly.

Moreover we are releasing for multiple platforms, notably for ARMv7 (Rasberry PI), for CentOS7 (Linux AMI on AWS) and of course for linux generic.

Finally we introduce also the TRIAL executable which can be freely downloaded and used, it provides all the functionality of the PRO version but it is limited for evaluation purposes, after ~2 hours it will shut down itself.

As always is possible to buy the commercial PRO version on our shop

QUERY, QUERY_STATEMENT, Blocking command & Replication

Choose a tag to compare

@siscia siscia released this 09 Apr 19:20

This is the first version to provide also the PRO packages.

This github release will not include executables that can be downloaded
from plasso1

This version comes with several improvements.

The API is still backwards compatible but we added two new commands:
REDISQL.QUERY and REDISQL.QUERY_STATEMENT

These commands behave exactly like REDISQL.EXEC and
REDISQL.EXEC_STATEMENT, but they accept readonly statements. A statement
that modifies the data is rejected by these new commands.

This allows us to mark those commands as readonly and to use them against
replicas/slave.

The PRO version includes:

  • blocking commands, just add the suffix .NOW
  • replication, allow AOF and master/slaves (cluster) support.

Also, several improvements to the internals have been made, and now the
code is cleaner and more maintainable.