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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,12 +25,12 @@ to a Coherence Cluster using gRPC for the network transport.
25
25
* session lifecycle events such as connected, disconnected, reconnected and closed
26
26
* Support for storing Go structs as JSON as well as the ability to serialize to Java objects on the server for access from other Coherence language API's
27
27
* Near cache support to cache frequently accessed data in the Go client to avoid sending requests across the network
28
-
* Support for simple and double-ended queues in Coherence Community Edition 24.09+ and commercial version 14.1.2.0+
28
+
* Support for simple and double-ended queues in Coherence Community Edition 25.03+ and commercial version 14.1.2.0+
29
29
* Full support for Go generics in all Coherence API's
30
30
31
31
#### Requirements
32
32
33
-
* Coherence CE 22.06.4+, 24.09+ or Coherence 14.1.1.2206.4+ Commercial edition with a configured [gRPCProxy](https://docs.oracle.com/en/middleware/standalone/coherence/14.1.1.2206/develop-remote-clients/using-coherence-grpc-server.html).
33
+
* Coherence CE 22.06.4+, 25.03+ or Coherence 14.1.1.2206.4+ Commercial edition with a configured [gRPCProxy](https://docs.oracle.com/en/middleware/standalone/coherence/14.1.1.2206/develop-remote-clients/using-coherence-grpc-server.html).
34
34
* Go 1.23.+
35
35
36
36
> Note: If you wish to use the queues API in the latest release, you must use CE 24.09 or commercial version 14.1.2.0.x.
Copy file name to clipboardExpand all lines: coherence/doc.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ The Coherence Go client provides the following features:
26
26
and session lifecycle events such as connected, disconnected, reconnected and closed
27
27
- Support for storing Go structs as JSON as well as the ability to serialize to Java objects on the server for access from other Coherence language API's
28
28
- Near cache support to cache frequently accessed data in the Go client to avoid sending requests across the network
29
-
- Support for simple and double-ended queues in Coherence Community Edition 24.09+ and commercial version 14.1.2.0+
29
+
- Support for simple and double-ended queues in Coherence Community Edition 25.03+ and commercial version 14.1.2.0+
30
30
- Full support for Go generics in all Coherence API's
31
31
32
32
For more information on Coherence caches, please see the [Coherence Documentation].
@@ -536,7 +536,7 @@ in your main code, create a new [Session] and register the listener
536
536
537
537
# Working with Queues
538
538
539
-
When connecting to a Coherence CE cluster versions 24.09 or above or commercial 14.1.2.0.+, you have the ability to create two main types of queues, a [NamedQueue] or [NamedDequeue].
539
+
When connecting to a Coherence CE cluster versions 25.03 or above or commercial 14.1.2.0.+, you have the ability to create two main types of queues, a [NamedQueue] or [NamedDequeue].
540
540
541
541
A [NamedQueue] is a simple FIFO queue which can be one of two types: either [Queue] - a simple queue which stores data in a single
542
542
partition and is limited to approx 2GB of storage, or [PagedQueue] which distributes data over the cluster and is only limited
@@ -700,7 +700,7 @@ that occur against a [NamedQueue].
0 commit comments