dodo  0.0.1
A C++ library to create containerized Linux services
dodo::persist::KVStore::MetaData Struct Reference

Meta data concerning the key. More...

#include <kvstore.hpp>

Collaboration diagram for dodo::persist::KVStore::MetaData:

Data Fields

double last_modified = 0
 unix timestamp in UTC (seconds) More...
 
sqlite::Query::DataType type
 The DataType of the key's value. More...
 
int64_t update_count = 0
 number of times the value was updates (is 0 after insertKey) More...
 

Detailed Description

Meta data concerning the key.

Definition at line 83 of file kvstore.hpp.

Field Documentation

◆ last_modified

double dodo::persist::KVStore::MetaData::last_modified = 0

unix timestamp in UTC (seconds)

Definition at line 85 of file kvstore.hpp.

Referenced by dodo::persist::KVStore::getMetaData().

◆ type

sqlite::Query::DataType dodo::persist::KVStore::MetaData::type

The DataType of the key's value.

Definition at line 89 of file kvstore.hpp.

Referenced by dodo::persist::KVStore::getMetaData().

◆ update_count

int64_t dodo::persist::KVStore::MetaData::update_count = 0

number of times the value was updates (is 0 after insertKey)

Definition at line 87 of file kvstore.hpp.

Referenced by dodo::persist::KVStore::getMetaData().


The documentation for this struct was generated from the following file: