KVDB Entries
Setting Entries in KVDB.
Sample code on this page is based on the initial assumptions.
Entries Inside KVDB
Entries inside KVDBs are set in binary format. Before creating an entry, you need to decide on the entry format.
For more information about the KVDB's architecture and best practices for creating entries, visit the KVDBs Documentation.
Creating/Updating Entry
Creating/updating a simple entry to the given KVDB:
Listing All Keys in KVDB
To get a list of Entry Keys inside a KVDB, use listEntriesKeys
method.
Reading the entry keys of the KVDB (limited to the 100 newest entries as described by the KvdbKeysPagingQuery
object):
Getting Entry in KVDB
To get an Entry inside a KVDB, use getEntry
method.
We use cookies on our website. We use them to ensure the proper functioning of the site and, if you agree, for purposes we set, such as analytics or marketing.
Overview
KVDBs are a secure way for assigned members to access encrypted key-value databases.
Handling Events
Events allow your application to respond to changes in user context instantly. These events are automatically captured when relevant changes occur. You can subscribe to them by registering event listeners.