Sha256: e3e1ee3bff42a017cdf7c7478f6b0e4ae642f0166482e9da142d5939756e2da2
Contents?: true
Size: 1.2 KB
Versions: 32
Compression:
Stored size: 1.2 KB
Contents
module Libcouchbase::Ext # (Not documented) # # ## Fields: # :cmdflags :: # (Integer) # :exptime :: # (Integer) # :cas :: # (Integer) # :key :: # (KEYBUF) # :hashkey :: # (KEYBUF) # :value :: # (VALBUF) < @see lcb_CMDSTORE::value # :flags :: # (Integer) < @see lcb_CMDSTORE::flags # :datatype :: # (Integer) < @private # :operation :: # (StorageT) < @see lcb_CMDSTORE::operation # :persist_to :: # (Integer) Number of nodes to persist to. If negative, will be capped at the maximum # allowable for the current cluster. # @see lcb_DURABILITYOPTSv0::persist_to # :replicate_to :: # (Integer) Number of nodes to replicate to. If negative, will be capped at the maximum # allowable for the current cluster. # @see lcb_DURABILITYOPTSv0::replicate_to class CMDSTOREDUR < FFI::Struct layout :cmdflags, :uint, :exptime, :uint, :cas, :ulong_long, :key, KEYBUF.by_value, :hashkey, KEYBUF.by_value, :value, VALBUF.by_value, :flags, :uint, :datatype, :uchar, :operation, StorageT, :persist_to, :char, :replicate_to, :char end end
Version data entries
32 entries across 32 versions & 2 rubygems