AerospikeClient.Truncate Method
Remove records in specified namespace/set efficiently. This method is many orders of magnitude
faster than deleting records one at a time.
See https://www.aerospike.com/docs/reference/info#truncate
This asynchronous server call may return before the truncation is complete. The user can still
write new records after the server returns because new records will have last update times
greater than the truncate cutoff (set at the time of truncate call).
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
public void Truncate(
InfoPolicy policy,
string ns,
string set,
DateTime? beforeLastUpdate
)
- policy InfoPolicy
- info command configuration parameters, pass in null for defaults
- ns String
- required namespace
- set String
- optional set name. Pass in null to delete all sets in namespace.
- beforeLastUpdate Nullable<DateTime>
-
optionally delete records before record last update time.
If specified, value must be before the current time.
Pass in null to delete all records in namespace/set regardless of last update time.
IAerospikeClient.Truncate(InfoPolicy, String, String, Nullable<DateTime>)