提供基本的ttl测试用例
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

57 řádky
1.9 KiB

  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. //
  5. // Thread-safe (provides internal synchronization)
  6. #ifndef STORAGE_LEVELDB_DB_TABLE_CACHE_H_
  7. #define STORAGE_LEVELDB_DB_TABLE_CACHE_H_
  8. #include <cstdint>
  9. #include <string>
  10. #include "db/dbformat.h"
  11. #include "leveldb/cache.h"
  12. #include "leveldb/table.h"
  13. #include "port/port.h"
  14. namespace leveldb {
  15. class Env;
  16. class TableCache {
  17. public:
  18. TableCache(const std::string& dbname, const Options& options, int entries);
  19. ~TableCache();
  20. // Return an iterator for the specified file number (the corresponding
  21. // file length must be exactly "file_size" bytes). If "tableptr" is
  22. // non-null, also sets "*tableptr" to point to the Table object
  23. // underlying the returned iterator, or to nullptr if no Table object
  24. // underlies the returned iterator. The returned "*tableptr" object is owned
  25. // by the cache and should not be deleted, and is valid for as long as the
  26. // returned iterator is live.
  27. Iterator* NewIterator(const ReadOptions& options, uint64_t file_number,
  28. uint64_t file_size, Table** tableptr = nullptr);
  29. // If a seek to internal key "k" in specified file finds an entry,
  30. // call (*handle_result)(arg, found_key, found_value).
  31. Status Get(const ReadOptions& options, uint64_t file_number,
  32. uint64_t file_size, const Slice& k, void* arg,
  33. void (*handle_result)(void*, const Slice&, const Slice&));
  34. // Evict any entry for the specified file number
  35. void Evict(uint64_t file_number);
  36. private:
  37. Status FindTable(uint64_t file_number, uint64_t file_size, Cache::Handle**);
  38. Env* const env_;
  39. const std::string dbname_;
  40. const Options& options_;
  41. Cache* cache_;
  42. };
  43. } // namespace leveldb
  44. #endif // STORAGE_LEVELDB_DB_TABLE_CACHE_H_