This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 1e9c1e27b92 IGNITE-27173 .NET: Distributed cache: fix column names in
README.md (#7070)
1e9c1e27b92 is described below
commit 1e9c1e27b92777994a922923a304685e4706f5d3
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Nov 26 08:06:54 2025 +0200
IGNITE-27173 .NET: Distributed cache: fix column names in README.md (#7070)
---
modules/platforms/dotnet/Apache.Extensions.Caching.Ignite/README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/modules/platforms/dotnet/Apache.Extensions.Caching.Ignite/README.md
b/modules/platforms/dotnet/Apache.Extensions.Caching.Ignite/README.md
index 601f863ac66..4fc958e4477 100644
--- a/modules/platforms/dotnet/Apache.Extensions.Caching.Ignite/README.md
+++ b/modules/platforms/dotnet/Apache.Extensions.Caching.Ignite/README.md
@@ -14,13 +14,13 @@ services
```
* `AddIgniteClientGroup` is required for the cache to work. It is used to
create a connection to the Ignite cluster.
-* Ignite table will be created automatically if it does not exist. Key column
is `VARCHAR` and value column is `VARBINARY`.
+* Ignite table will be created automatically if it does not exist, with
columns: `KEY VARCHAR PRIMARY KEY, VAL VARBINARY`.
## Configuration
`IgniteDistributedCacheOptions` has the following properties:
* `TableName` - name of the table in Ignite where the cache is stored. Default
is `IGNITE_DOTNET_DISTRIBUTED_CACHE`.
* `KeyColumnName` - name of the column in the table where the cache keys are
stored. Default is `KEY`.
-* `ValueColumnName` - name of the column in the table where the cache values
are stored. Default is `VALUE`.
+* `ValueColumnName` - name of the column in the table where the cache values
are stored. Default is `VAL`.
* `CacheKeyPrefix` - optional prefix for the cache keys. Default is `null`.
* `IgniteClientGroupServiceKey` - optional service collection key to resolve
an `IIgniteClientGroup` instance. Default is `null`.