Class HLLWriteFlags

java.lang.Object
com.aerospike.client.operation.HLLWriteFlags

public final class HLLWriteFlags
extends Object
HyperLogLog operation policy write flags.
  • Field Details

    • DEFAULT

      public static final int DEFAULT
      Default. Allow create or update.
      See Also:
      Constant Field Values
    • CREATE_ONLY

      public static final int CREATE_ONLY
      If the bin already exists, the operation will be denied. If the bin does not exist, a new bin will be created.
      See Also:
      Constant Field Values
    • UPDATE_ONLY

      public static final int UPDATE_ONLY
      If the bin already exists, the bin will be overwritten. If the bin does not exist, the operation will be denied.
      See Also:
      Constant Field Values
    • NO_FAIL

      public static final int NO_FAIL
      Do not raise error if operation is denied.
      See Also:
      Constant Field Values
    • ALLOW_FOLD

      public static final int ALLOW_FOLD
      Allow the resulting set to be the minimum of provided index bits. Also, allow the usage of less precise HLL algorithms when minHash bits of all participating sets do not match.
      See Also:
      Constant Field Values
  • Constructor Details