package kinetic-client

  1. Overview
  2. Docs
type t = {
  1. vendor : string;
  2. model : string;
  3. serial_number : bytes;
  4. world_wide_name : bytes;
  5. version : string;
  6. ipv4_addresses : bytes list;
  7. max_key_size : int;
  8. max_value_size : int;
  9. max_version_size : int;
  10. max_tag_size : int;
  11. max_connections : int;
  12. max_outstanding_read_requests : int;
  13. max_outstanding_write_requests : int;
  14. max_message_size : int;
  15. max_key_range_count : int;
  16. max_operation_count_per_batch : int option;
  17. max_batch_size : int option;
  18. max_deletes_per_batch : int option;
  19. timeout : float;
}
val show : t -> string