You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Redis backend, vertx-rest-storage keeps track of the "path" to each resource by implicit keep "collection" entries up-to-date. As far as is see, those collections...
are not used when directly targeting a concrete resource
need to be updated with every PUT/DELETE
Proposal: Use Redis "SCAN 0 MATCH " command to list 'entries in a directory' or complete subtrees.
This could also speedup deep expands, where, for now, vertx-rest-storage has to visit various collections (and finally resources) recursively.
The text was updated successfully, but these errors were encountered:
In Redis backend, vertx-rest-storage keeps track of the "path" to each resource by implicit keep "collection" entries up-to-date. As far as is see, those collections...
Proposal: Use Redis "SCAN 0 MATCH " command to list 'entries in a directory' or complete subtrees.
This could also speedup deep expands, where, for now, vertx-rest-storage has to visit various collections (and finally resources) recursively.
The text was updated successfully, but these errors were encountered: