提供基本的ttl测试用例
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

14 рядки
429 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() : comparator(BytewiseComparator()), env(Env::Default()) {}
  9. } // namespace leveldb