Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -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`.