Skip to content

Commit

Permalink
Merging
Browse files Browse the repository at this point in the history
//dev/release.net/coherence-net-v14.1.2.0/... @113052, @113066 to //dev/main.net/...

[git-p4: depot-paths = "//dev/main.net/": change = 113090]
  • Loading branch information
lsho committed Dec 24, 2024
1 parent 3d1b238 commit 272e70c
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 5 deletions.
10 changes: 5 additions & 5 deletions assets/nuget-readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@

Since its initial release in 2001, it has been used by thousands of customers across many industries to power some of the mission critical systems you use every day. Often imitated, but never duplicated, it is now available for everyone to use free of charge.

### About Oracle Coherence Client for .NET
### About Oracle Coherence Extend Client for .NET

**Oracle Coherence Client for .NET** allows .NET applications to access Coherence clustered services, including data, data events, and data processing from outside the Coherence cluster. Typical uses of Coherence for .NET include desktop and web applications that require access to Coherence-managed data.
**Oracle Coherence Extend Client for .NET** allows .NET applications to access Coherence clustered services, including data, data events, and data processing from outside the Coherence cluster. Typical uses of Coherence for .NET include desktop and web applications that require access to Coherence-managed data.

Coherence Client for .NET is a lightweight .NET library that connects to a Coherence\*Extend clustered service instance running within the Coherence cluster using a high performance TCP/IP-based communication layer. This library sends all client requests to the Coherence\*Extend clustered service which, in turn, responds to client requests by delegating to an actual Coherence clustered service (for example, a *Partitioned* or *Replicated* cache service).
Coherence Extend Client for .NET is a lightweight .NET library that connects to a Coherence\*Extend clustered service instance running within the Coherence cluster using a high performance TCP/IP-based communication layer. This library sends all client requests to the Coherence\*Extend clustered service which, in turn, responds to client requests by delegating to an actual Coherence clustered service (for example, a *Partitioned* or *Replicated* cache service).

An `INamedCache` instance is retrieved via the `CacheFactory.GetCache()` API call. Once it is obtained, a client accesses the `INamedCache` in the same way as it would if it were part of the Coherence cluster. The fact that cache operations are being sent and executed on a remote cluster node (over TCP/IP) is completely transparent to the client application.

For more information, see [Oracle Coherence Client for .NET Documentation]((https://coherence.community/14.1.2.0/api/dotnet/index.html)
For more information, see [Oracle Coherence Client for .NET Documentation](https://docs.oracle.com/en/middleware/fusion-middleware/coherence/14.1.2/net-reference)

### Additional Information

* [Oracle Coherence CE Web Site](https://coherence.community/)
* [Oracle Coherence CE Blog](https://medium.com/oracle-coherence)
* [Oracle Coherence YouTube Channel](https://www.youtube.com/user/OracleCoherence)
* [Oracle Coherence CE Source Code](https://github.com/oracle/coherence)
* [Oracle Coherence Client for .NET Source Code](https://github.com/oracle/coherence-dotnet-extend-client/tree/main)
* [Oracle Coherence Extend Client for .NET Source Code](https://github.com/oracle/coherence-dotnet-extend-client/tree/main)
17 changes: 17 additions & 0 deletions assets/nuget-session-store-readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
**Oracle Coherence CE** (Community Edition) is a free and open source edition of [Oracle Coherence](https://www.oracle.com/middleware/technologies/coherence.html), first and market-leading in-memory data grid.

Since its initial release in 2001, it has been used by thousands of customers across many industries to power some of the mission critical systems you use every day. Often imitated, but never duplicated, it is now available for everyone to use free of charge.

### About Oracle Coherence Extend Client for .NET

**Oracle Coherence Extend Client for .NET SessionStore** allows ASP.NET session state to be managed in a Coherence cluster. To use this feature, user must have a Coherence Commercial Edition of the server.

For more information, see API Documentation for **Tangosol.Web** and **Tangosol.Web.Model** namespaces in [Oracle Coherence Extend Client for .NET Documentation](https://docs.oracle.com/en/middleware/fusion-middleware/coherence/14.1.2/net-reference)

### Additional Information

* [Oracle Coherence CE Web Site](https://coherence.community/)
* [Oracle Coherence CE Blog](https://medium.com/oracle-coherence)
* [Oracle Coherence YouTube Channel](https://www.youtube.com/user/OracleCoherence)
* [Oracle Coherence CE Source Code](https://github.com/oracle/coherence)
* [Oracle Coherence Extend Client for .NET Source Code](https://github.com/oracle/coherence-dotnet-extend-client/tree/main)
10 changes: 10 additions & 0 deletions src/Coherence.SessionStore/Coherence.SessionStore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,16 @@
<EmbeddedResource Include="Config\coherence-aspnet-pof-config.xml" />
</ItemGroup>

<ItemGroup>
<None Include="Config/coherence-aspnet-cache-config.xml" Pack="true" PackagePath="Config/coherence-aspnet-cache-config.xml"/>
<None Include="Config/coherence-aspnet-pof-config.xml" Pack="true" PackagePath="Config/coherence-aspnet-pof-config.xml"/>
</ItemGroup>

<ItemGroup>
<None Include="../../assets/coherence-logo.png" Pack="true" PackagePath="/"/>
<None Include="../../assets/nuget-session-store-readme.md" Pack="true" PackagePath="readme.md"/>
</ItemGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
Expand Down
7 changes: 7 additions & 0 deletions src/Coherence/Coherence.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@
<EmbeddedResource Include="Config\coherence-pof-config.xml" />
<EmbeddedResource Include="Config\coherence.xsd" />
</ItemGroup>

<ItemGroup>
<None Include="Config/cache-config.xsd" Pack="true" PackagePath="Config/cache-config.xsd"/>
<None Include="Config/coherence-pof-config.xml" Pack="true" PackagePath="Config/coherence-pof-config.xml"/>
<None Include="Config/coherence.xsd" Pack="true" PackagePath="Config/coherence.xsd"/>
<None Include="Config/pof-config.xsd" Pack="true" PackagePath="Config/pof-config.xsd"/>
</ItemGroup>

<ItemGroup>
<None Include="../../assets/coherence-logo.png" Pack="true" PackagePath="/"/>
Expand Down

0 comments on commit 272e70c

Please sign in to comment.