| 94 | class String : public Database { |
| 95 | public: |
| 96 | explicit String(engine::Storage *storage, const std::string &ns) : Database(storage, ns) {} |
| 97 | rocksdb::Status Append(engine::Context &ctx, const std::string &user_key, const std::string &value, |
| 98 | uint64_t *new_size); |
| 99 | rocksdb::Status Get(engine::Context &ctx, const std::string &user_key, std::string *value); |
no outgoing calls