Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/main/asciidoc/query-languages/redis.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ This is because JSON doesn't maintain the order of properties, but only of array
**Available miscellaneous commands**:

- https://redis.io/commands/ping[PING], Returns its argument (for testing server readiness or latency)
- https://redis.io/commands/select[SELECT], Choose database
- https://redis.io/commands/multi[MULTI], Start of multiple command script (initiating a transaction)
- https://redis.io/commands/exec[EXEC], End of multiple command script (commit a transaction)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For completeness, it would be beneficial to also list the DISCARD command here. The documentation already mentions and provides an example for DISCARD to abort transactions (line 341), so including it in this list alongside MULTI and EXEC would improve consistency.

- https://redis.io/commands/exec[EXEC], End of multiple command script (commit a transaction)
- https://redis.io/commands/discard[DISCARD], Abort a multiple command script (rollback a transaction)


[discrete]
===== Settings
Expand Down
6 changes: 2 additions & 4 deletions src/main/asciidoc/query-languages/sql/chapter.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@ image:../images/edit.png[link="https://github.com/ArcadeData/arcadedb-docs/blob/
| <<sql-delete,DELETE>> | <<sql-truncate-type,TRUNCATE TYPE>> | <<sql-import-database,IMPORT DATABASE>> |
| <<sql-create-vertex,CREATE VERTEX>> | <<sql-create-bucket,CREATE BUCKET>> | <<sql-align-database,ALIGN DATABASE>> |
| <<sql-create-edge,CREATE EDGE>> | ALTER BUCKET (_not implemented_) | <<sql-check-database,CHECK DATABASE>> |
| <<sql-move-vertex,MOVE VERTEX>> | <<sql-drop-bucket,DROP BUCKET>> | |
| <<sql-match,MATCH>> | <<sql-truncate-bucket,TRUNCATE BUCKET>> | |
| <<sql-move-vertex,MOVE VERTEX>> | <<sql-drop-bucket,DROP BUCKET>> | <<sql-create-trigger,CREATE TRIGGER>> |
| <<sql-match,MATCH>> | <<sql-truncate-bucket,TRUNCATE BUCKET>> | <<sql-drop-trigger,DROP TRIGGER>> |
| <<sql-traverse,TRAVERSE>> | <<sql-create-property,CREATE PROPERTY>> | <<sql-create-index,CREATE INDEX>> |
| | <<sql-alter-property,ALTER PROPERTY>> | <<sql-rebuild-index,REBUILD INDEX>> |
| | <<sql-drop-property,DROP PROPERTY>> | <<sql-drop-index,DROP INDEX>> |
| | <<sql-create-trigger,CREATE TRIGGER>> | |
| | <<sql-drop-trigger,DROP TRIGGER>> | |
|===

*Overview Functions*
Expand Down
2 changes: 1 addition & 1 deletion src/main/asciidoc/version.adoc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
:revnumber: 26.1.1
:revnumber: 26.2.1
Loading