提供基本的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.

29 lines
788 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. #include "leveldb/options.h"
  5. #include "leveldb/comparator.h"
  6. #include "leveldb/env.h"
  7. namespace leveldb {
  8. Options::Options()
  9. : comparator(BytewiseComparator()),
  10. create_if_missing(false),
  11. error_if_exists(false),
  12. paranoid_checks(false),
  13. env(Env::Default()),
  14. info_log(NULL),
  15. write_buffer_size(4<<20),
  16. max_open_files(1000),
  17. block_cache(NULL),
  18. block_size(4096),
  19. block_restart_interval(16),
  20. compression(kSnappyCompression),
  21. reuse_logs(false),
  22. filter_policy(NULL) {
  23. }
  24. } // namespace leveldb