Home
last modified time | relevance | path

Searched refs:PutWithTTL (Results 1 – 5 of 5) sorted by relevance

/rocksdb-6.9/utilities/blob_db/
Dblob_db_test.cc321 TEST_F(BlobDBTest, PutWithTTL) { in TEST_F() argument
404 PutWithTTL("key2", "value2", 200); in TEST_F()
1008 ASSERT_OK(PutWithTTL("large_key1", value_1k, 60, &data)); in TEST_F()
1012 ASSERT_OK(PutWithTTL("large_key2", value_1k, 60, &data)); in TEST_F()
1043 ASSERT_OK(PutWithTTL("large_key", value, 60)); in TEST_F()
1285 ASSERT_OK(PutWithTTL(key, value, ttl, &data)); in TEST_F()
1303 ASSERT_OK(PutWithTTL("large_key1", large_value, 90)); in TEST_F()
1304 ASSERT_OK(PutWithTTL("large_key2", large_value, 150)); in TEST_F()
1313 ASSERT_OK(PutWithTTL("large_key3", large_value, 150)); in TEST_F()
1589 ASSERT_OK(PutWithTTL("foo", "bar", 100, &data)); in TEST_F()
[all …]
Dblob_db.h111 virtual Status PutWithTTL(const WriteOptions& options, const Slice& key,
113 virtual Status PutWithTTL(const WriteOptions& options, in PutWithTTL() function
120 return PutWithTTL(options, key, value, ttl); in PutWithTTL()
Dblob_db_impl.h132 using BlobDB::PutWithTTL;
133 Status PutWithTTL(const WriteOptions& options, const Slice& key,
Dblob_db_impl.cc986 Status BlobDBImpl::PutWithTTL(const WriteOptions& options, in PutWithTTL() function in ROCKSDB_NAMESPACE::blob_db::BlobDBImpl
/rocksdb-6.9/tools/
Ddb_bench_tool.cc4419 s = blobdb->PutWithTTL(write_options_, key, val, ttl); in DoWrite()