Derek Trider
Derek Trider
For other TrustBloc projects, I was able to use endpoints to do this, but since this is running via WASM that same approach won't work here.
See this comment chain for more info: https://github.com/hyperledger/aries-framework-go-ext/pull/259#discussion_r892789777
There are additional methods that are not implemented that may be useful for someone extending aries-framework-go.
The Put method already does this, but the SetStoreConfig method should as well, since those names conflict with the query syntax. Currently SetStoreConfig only checks for ":" characters.
The current PostgreSQL storage implementation is incomplete. In no particular order: * Some methods are just not implemented at all * The SetStoreConfig method does not allow tag names to...
MongoDB allows a BulkWrite call to be ordered or unordered. Right now all calls to BulkWrite are always ordered. For callers that don't need this, allowing them to specify that...
This might help performance for clients that always want to get total item counts. Maybe it'll reduce performance for clients that don't need it? We should investigate. The usage of...
The current storage interface makes it hard to specify compound indexes cleanly. Investigate how compound indexes may benefit performance, and how they can be supported by the storage interface in...