提供基本的ttl测试用例
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

14 righe
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