Skip to content

Commit

Permalink
CLIENT-3225: Clarify that Policy.compress requires Enterprise Edition (
Browse files Browse the repository at this point in the history
  • Loading branch information
shannonklaus authored Jan 10, 2025
1 parent a79c1ef commit fc300be
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions AerospikeClient/Policy/Policy.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2024 Aerospike, Inc.
* Copyright 2012-2025 Aerospike, Inc.
*
* Portions may be licensed to Aerospike, Inc. under one or more contributor
* license agreements.
Expand Down Expand Up @@ -243,14 +243,15 @@ public class Policy
/// Default: false (do not send the user defined key)
/// </para>
/// </summary>
public bool sendKey;

public bool sendKey;

/// <summary>
/// Use zlib compression on command buffers sent to the server and responses received
/// from the server when the buffer size is greater than 128 bytes.
/// from the server when the buffer size is greater than 128 bytes. This option will
/// increase cpu and memory usage(for extra compressed buffers), but decrease the size
/// of data sent over the network.
/// <para>
/// This option will increase cpu and memory usage (for extra compressed buffers), but
/// decrease the size of data sent over the network.
/// This compression feature requires the Enterprise Edition Server.
/// </para>
/// <para>
/// Default: false
Expand Down

0 comments on commit fc300be

Please sign in to comment.