summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarel Ben-Attia <harelba@gmail.com>2021-10-22 03:49:09 +0300
committerHarel Ben-Attia <harelba@gmail.com>2021-10-22 03:49:09 +0300
commitd30a2cfc0836478f5f06213521f11b6ec25d779b (patch)
tree546d1bc073e122119b24f12844028dcbde3adb38
parent61e888cea9a34a6a2b33d490fde7b4fa72fcde1f (diff)
docs
-rw-r--r--README.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.markdown b/README.markdown
index 1453554..40f3b67 100644
--- a/README.markdown
+++ b/README.markdown
@@ -8,9 +8,9 @@ q treats ordinary files as database tables, and supports all SQL constructs, suc
q's web site is [http://harelba.github.io/q/](http://harelba.github.io/q/) or [https://q.textasdata.wiki](https://q.textasdata.wiki) It contains everything you need to download and use q immediately.
## New beta version `3.1.0-beta` is available
-(Full Details [here](QSQL-NOTES.md))
+Full Details [here](QSQL-NOTES.md), and an example of the caching is in [here](QSQL-NOTES.md#basic-example-of-using-the-caching).
-This is the list of new/changed functionality in this version, major stuff, please make sure to read it and the details link as well.
+This is the list of new/changed functionality in this version, large changes, please make sure to read it and the details link as well.
* **Automatic Immutable Caching** - Automatic caching of data files (into `<my-csv-filename>.qsql` files), with huge speedups for medium/large files. Enabled through `-C readwrite` or `-C read`
* **Direct querying of standard sqlite databases** - Just use it as a table name in the query. Format is `select ... from <sqlitedb_filename>:::<table_name>`, or just `<sqlitedb_filename>` if the database contains only one table. Multiple separate sqlite databases are fully supported in the same query.