Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLIENT-3225: Clarify that Policy.compress requires Enterprise Edition #145

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading