MCPcopy Create free account
hub / github.com/bytedance/terarkdb / add

Method add

java/src/main/java/org/rocksdb/SstFileWriter.java:71–75  ·  view source on GitHub ↗

Add a Put key with value to currently opened file. @param key the specified key to be inserted. @param value the value associated with the specified key. @throws RocksDBException thrown if error happens in underlying native library. @deprecated Use #put(Slice, Slice)

(final Slice key, final Slice value)

Source from the content-addressed store, hash-verified

69 * @deprecated Use {@link #put(Slice, Slice)}
70 */
71 @Deprecated
72 public void add(final Slice key, final Slice value)
73 throws RocksDBException {
74 put(nativeHandle_, key.getNativeHandle(), value.getNativeHandle());
75 }
76
77 /**
78 * Add a Put key with value to currently opened file.

Callers 15

mainMethod · 0.45
mainMethod · 0.45
runMethod · 0.45
threadedWritesMethod · 0.45
compressionPerLevelMethod · 0.45
snapshotCreatedMethod · 0.45
dbPathsMethod · 0.45
ingestSstFileMethod · 0.45
ingestSstFile_cfMethod · 0.45

Calls 2

putMethod · 0.95
getNativeHandleMethod · 0.80