You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,14 @@ The .NET client itself is distributed via NuGet as a package named [Hazelcast.NE
12
12
13
13
The Hazelcast .NET solution is Open Source, released under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0), and welcomes contributions. The project lives here on [GitHub](https://github.com/hazelcast/hazelcast-csharp-client), where you can obtain the source code, report issues, and interract with the community. Contributions are welcome!
14
14
15
+
16
+
## Extension Packages
17
+
In addition to the core `Hazelcast.Net` client package, there are several extension packages that provide additional functionality. These include:
18
+
19
+
-`Hazelcast.Net.DependencyInjection`: Provides integration with Microsoft's Dependency Injection framework which is also used with ASP.NET.
20
+
-`Hazelcast.Net.Caching`: Adds caching capabilities to the Hazelcast .NET client by implementing `IDistributedCache`.
21
+
-`Hazelcast.Net.Linq.Async`: Enables LINQ support for asynchronous map querying with Hazelcast.
22
+
15
23
## Versions
16
24
17
25
Browse to [this page](http://hazelcast.github.io/hazelcast-csharp-client/versions.html) for details about versions.
@@ -22,6 +30,23 @@ See [this branch](https://github.com/hazelcast/hazelcast-csharp-client/tree/3.12
22
30
23
31
Check the [Hazelcast.Net.Examples](https://github.com/hazelcast/hazelcast-csharp-client/tree/master/src/Hazelcast.Net.Examples) project.
24
32
33
+
Here is a simple example that connects to a Hazelcast server running on localhost, puts and gets a value from a distributed map.
0 commit comments