Skip to content

Commit 272e70c

Browse files
committed
Merging
//dev/release.net/coherence-net-v14.1.2.0/... @113052, @113066 to //dev/main.net/... [git-p4: depot-paths = "//dev/main.net/": change = 113090]
1 parent 3d1b238 commit 272e70c

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed

assets/nuget-readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
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.
44

5-
### About Oracle Coherence Client for .NET
5+
### About Oracle Coherence Extend Client for .NET
66

7-
**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.
7+
**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.
88

9-
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).
9+
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).
1010

1111
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.
1212

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

1515
### Additional Information
1616

1717
* [Oracle Coherence CE Web Site](https://coherence.community/)
1818
* [Oracle Coherence CE Blog](https://medium.com/oracle-coherence)
1919
* [Oracle Coherence YouTube Channel](https://www.youtube.com/user/OracleCoherence)
2020
* [Oracle Coherence CE Source Code](https://github.com/oracle/coherence)
21-
* [Oracle Coherence Client for .NET Source Code](https://github.com/oracle/coherence-dotnet-extend-client/tree/main)
21+
* [Oracle Coherence Extend Client for .NET Source Code](https://github.com/oracle/coherence-dotnet-extend-client/tree/main)

assets/nuget-session-store-readme.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
**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.
2+
3+
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.
4+
5+
### About Oracle Coherence Extend Client for .NET
6+
7+
**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.
8+
9+
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)
10+
11+
### Additional Information
12+
13+
* [Oracle Coherence CE Web Site](https://coherence.community/)
14+
* [Oracle Coherence CE Blog](https://medium.com/oracle-coherence)
15+
* [Oracle Coherence YouTube Channel](https://www.youtube.com/user/OracleCoherence)
16+
* [Oracle Coherence CE Source Code](https://github.com/oracle/coherence)
17+
* [Oracle Coherence Extend Client for .NET Source Code](https://github.com/oracle/coherence-dotnet-extend-client/tree/main)

src/Coherence.SessionStore/Coherence.SessionStore.csproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,16 @@
3535
<EmbeddedResource Include="Config\coherence-aspnet-pof-config.xml" />
3636
</ItemGroup>
3737

38+
<ItemGroup>
39+
<None Include="Config/coherence-aspnet-cache-config.xml" Pack="true" PackagePath="Config/coherence-aspnet-cache-config.xml"/>
40+
<None Include="Config/coherence-aspnet-pof-config.xml" Pack="true" PackagePath="Config/coherence-aspnet-pof-config.xml"/>
41+
</ItemGroup>
42+
43+
<ItemGroup>
44+
<None Include="../../assets/coherence-logo.png" Pack="true" PackagePath="/"/>
45+
<None Include="../../assets/nuget-session-store-readme.md" Pack="true" PackagePath="readme.md"/>
46+
</ItemGroup>
47+
3848
<ItemGroup>
3949
<FrameworkReference Include="Microsoft.AspNetCore.App" />
4050
</ItemGroup>

src/Coherence/Coherence.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,13 @@
101101
<EmbeddedResource Include="Config\coherence-pof-config.xml" />
102102
<EmbeddedResource Include="Config\coherence.xsd" />
103103
</ItemGroup>
104+
105+
<ItemGroup>
106+
<None Include="Config/cache-config.xsd" Pack="true" PackagePath="Config/cache-config.xsd"/>
107+
<None Include="Config/coherence-pof-config.xml" Pack="true" PackagePath="Config/coherence-pof-config.xml"/>
108+
<None Include="Config/coherence.xsd" Pack="true" PackagePath="Config/coherence.xsd"/>
109+
<None Include="Config/pof-config.xsd" Pack="true" PackagePath="Config/pof-config.xsd"/>
110+
</ItemGroup>
104111

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

0 commit comments

Comments
 (0)