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

Commit 203006c

Browse files
author
Simone Mosciatti
committed
Merge branch 'master' of github.com:RedBeardLab/rediSQL
2 parents 4f0fe31 + 7107dbd commit 203006c

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RediSQL is the Fast, in-memory, SQL engine with batteries included.
44

55
It provides several benefits for your application.
66

7-
1. Fast, it can top up to 130k inserts per *seconds*.
7+
1. Fast, it can top up to 130k inserts per *second*.
88
2. Familiar, it works with standard SQL, no weird dialect or syntax to learn.
99
3. Easy to Operate, it is based on Redis, just start the standard Redis binary and and pass the RediSQL binary.
1010
4. Easy to Use, being based on Redis there are already bindings for any language.
@@ -16,55 +16,55 @@ There are several use cases for RediSQL.
1616
### RediSQL to store Transient Data
1717

1818
RediSQL is wonderful for transient data.
19-
With supports for lightweights DBs you can just store all the data that are important now, and trash them all together as soon as they are not necessary anymore.
19+
With supports for lightweights DBs, you can just store all the data that are important now, and trash them all together as soon as they are not necessary anymore.
2020

2121
### RediSQL as main database
2222

23-
The product is stable, it does not loose data and you can store the data into regular files to gain in persistency.
24-
Moreover RediSQL support all the persistency features of Redis, hence RDB and AOF are both fully supported.
23+
The product is stable, it does not lose data.
24+
Moreover RediSQL supports all the persistency features of Redis, hence RDB and AOF are both fully supported.
2525

2626
## Much more to explore...
2727

28-
There are a lot of features in RediSQL that is worth to explore more, here a short excerpt of those features.
28+
There are a lot of features in RediSQL that are worth exploring more. Here are short explanations of those features.
2929

3030
#### Lightweight DBs
3131

32-
RediSQL provides you with lightweight in memory databases.
33-
It could completely shift your architecture, indeed you could thing to create a new isolated database each day, or for every tenant of your application or even for each of your users.
32+
RediSQL provides you with lightweight in-memory databases.
33+
It could completely shift your architecture. For example, you could create a new isolated database each day, one for each application tenant, or even one per user.
3434

3535
#### On disk storage
3636

37-
While RediSQL focus on in-memory database, it can also store data in a regular file. Of course this makes operations slower, but it allow to reach a level of persistency and safeness of data on pair with regular databases as Postgres or MySQL.
37+
While RediSQL focuses on in-memory database, it can also store data in a regular file. Of course this makes operations slower, but it allows RediSQL to reach a level of data persistency on par with incumbent databases such as Postgres or MySQL.
3838

3939
#### Copy of DBs
4040

41-
With the concept of lightweight databases it become necessary to have a way to duplicate your database.
41+
With the concept of lightweight databases, it becomes necessary to have a way to duplicate your database.
4242
Indeed it is possible to copy a database into another one.
43-
This allow several interesting patterns.
44-
For example you could copy an in-memory database into a file-backed database and then ship the file for storage or other analysis.
43+
This allows several interesting patterns.
44+
For example, you could copy an in-memory database into a file-backed database and then ship the file for storage or other analysis.
4545
Another pattern would be to copy a heavy read database into another for load balancing reasons.
4646
Moreover you may use the copy function to keep a "base-database" to grow when new data comes in.
4747

4848
#### Directly expose the DB to users
4949

50-
With the ability to create several lightweight databases and the capability to copy those database, you could directly expose directly the databases to the final users instead of exposing a set of API that you would need to maintain.
50+
With the ability to create several lightweight databases, and the capability to copy those database, you could directly expose the databases to the end users instead of exposing an API that you would need to maintain.
5151
Just load all the data that the user may need into a RediSQL database, document the tables that are available, and give access to it to the users.
5252
They will write their own API without waiting on you.
5353

5454
#### Stream and cache query results
5555

56-
RediSQL allow to store the results of queries into a Redis Stream.
57-
This allow different clients to consume part of the result, or to delay the consuption of a result.
58-
Moreover it allow to cache the result of expensive queries into Redis Streams and consume them over and over again.
56+
RediSQL can also store results of queries into a Redis Streams.
57+
This allows different clients to consume part of the result, or to delay the consuption of a result.
58+
Moreover, it allows caching the result of expensive queries as Redis Streams to consume them over and over again.
5959

6060
#### Complete JSON support
6161

62-
JSON is the de-facto standard to share data between application, indeed RediSQL exploit the JSON1 module of SQLite to bring you the capability to easy and quickly manage JSON data inside SQL statements and tables.
63-
In RediSQL you are able to manipulate JSON in all the possible way.
62+
JSON is the de-facto standard for sharing data between applications. RediSQL exploits the JSON1 module of SQLite to bring that capability to easy and quickly manage JSON data inside SQL statements and tables.
63+
In RediSQL you are able to manipulate JSON in every standard way.
6464

6565
#### Full text search support
6666

67-
RediSQL fully supports also the FTS{3,4,5} engine in SQLite giving you a full text engine at your fingertip.
67+
RediSQL fully supports also the FTS{3,4,5} engine from SQLite, giving you a full text engine at your fingertip.
6868
You will be able to manage and search for data.
6969

7070
## Getting started

0 commit comments

Comments
 (0)