Skip to content

Commit 7ee3396

Browse files
committed
Updating readme
1 parent 4a8f129 commit 7ee3396

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,32 @@ Followed by `DStack` which faciltates the stacking of data backend provider for
1818
| backend | status | notes | DataObjectMap | KeyValueMap | KeyLongMap | FileWorkspaceMap |
1919
|------------------|---------------|------------------------------------------------------|---------------|-------------|------------|------------------|
2020
| struct.simple | in-production | reference implementation, not recommended for use | storage | storage | storage | storage |
21-
| struct.cache | in-production | local instance caching, useful for WORM data | storage | | | |
21+
| struct.cache | in-production | local instance caching, useful for WORM data | storage | storage | | |
2222
| jsql | in-production | *with limits: see SQL support notes below | full | full | full | full |
23+
| mongodb | in-production | *with limits: see MongoDB support notes below | full | full | full | full |
2324
| hazelcast.cache | in-production | | full | full | full | |
2425
| hazelcast.store | in-production | | full | full | full | |
2526
| file.simple | in-production | | | | | storage |
2627
| file.layered | in-production | | | | | storage |
27-
| ignite | development | roadmap | | | | |
28-
| cockroachdb | development | roadmap | | | | |
28+
| resdisson | experimental | | storage | storage | | |
29+
| ignite | roadmap | roadmap | | | | |
30+
| cockroachdb | roadmap | roadmap | | | | |
2931

3032
**Important notes**
3133

3234
- "full", means it has been optimized for both storage, and query operations.
3335
- "storage" means does not support optimization for queries, for large queries, this can have detrimental performance implication, as the apistack will need to iterate a large number of data.
3436
- Hazelcast require a custom build / deployment with the JavaCommons JAR file to support the required functionality
3537
- MySQL connection / db seems to support only up to 16 digits of accuracy
38+
- Requires read-after-write consistency, for expected behaviour, use w=majority&readConcernLevel=linearizable
3639

3740
# Data Structures
3841

3942
| DataStructure | Status | Description |
4043
|------------------|---------------|----------------------------------------------------------------------------|
4144
| DataObjectMap | in-production | Map document storage, with SQL query support |
4245
| KeyValueMap | in-production | High performance key to string value storage |
43-
| KeyLongMap | experimental | Varient of KeyValue with atomic long support (if used in single tier mode) |
44-
| FileWorkspaceMap | development | File workspace storage support |
46+
| KeyLongMap | in-production | Varient of KeyValue with atomic long support (if used in single tier mode) |
47+
| FileWorkspaceMap | in-production | File workspace storage support |
4548
| MessageQueue | road-map | Message queue |
4649
| JobQueue | road-map | Job request, response queue |

0 commit comments

Comments
 (0)