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
The ubridge resource uses kv-store resource internally for its database and it adds some more abstraction on top of the pure "kv-store":
structkv_value {
uint64_tseqnum;
sid_ucmd_kv_flags_tflags;
chardata[]; /* contains both internal and external data */
} __attribute__((packed));
...and various related functions to manipulate with struct kv_value.
It would be nice if we could separate all these kv-store extras into a separate file with its own internal interface for ubridge OR alternatively even a completely new resource built on top of kv-store.
The text was updated successfully, but these errors were encountered:
The
ubridge
resource useskv-store
resource internally for its database and it adds some more abstraction on top of the pure "kv-store":...and various related functions to manipulate with
struct kv_value
.It would be nice if we could separate all these
kv-store
extras into a separate file with its own internal interface forubridge
OR alternatively even a completely new resource built on top ofkv-store
.The text was updated successfully, but these errors were encountered: