Searched refs:PutWithTTL (Results 1 – 5 of 5) sorted by relevance
| /rocksdb-6.9/utilities/blob_db/ |
| D | blob_db_test.cc | 321 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 …]
|
| D | blob_db.h | 111 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()
|
| D | blob_db_impl.h | 132 using BlobDB::PutWithTTL; 133 Status PutWithTTL(const WriteOptions& options, const Slice& key,
|
| D | blob_db_impl.cc | 986 Status BlobDBImpl::PutWithTTL(const WriteOptions& options, in PutWithTTL() function in ROCKSDB_NAMESPACE::blob_db::BlobDBImpl
|
| /rocksdb-6.9/tools/ |
| D | db_bench_tool.cc | 4419 s = blobdb->PutWithTTL(write_options_, key, val, ttl); in DoWrite()
|