提供基本的ttl测试用例
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
699 B

  1. // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file. See the AUTHORS file for names of contributors.
  4. #ifndef STORAGE_LEVELDB_HELPERS_MEMENV_MEMENV_H_
  5. #define STORAGE_LEVELDB_HELPERS_MEMENV_MEMENV_H_
  6. namespace leveldb {
  7. class Env;
  8. // Returns a new environment that stores its data in memory and delegates
  9. // all non-file-storage tasks to base_env. The caller must delete the result
  10. // when it is no longer needed.
  11. // *base_env must remain live while the result is in use.
  12. Env* NewMemEnv(Env* base_env);
  13. } // namespace leveldb
  14. #endif // STORAGE_LEVELDB_HELPERS_MEMENV_MEMENV_H_