Skip to content

Commit

Permalink
IGNITE-21212 Removed cacheName parameter from rest api (#11183)
Browse files Browse the repository at this point in the history
  • Loading branch information
IgGusev authored Jan 26, 2024
1 parent 17c5d6b commit 6fa698f
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions docs/_docs/restapi.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ Adds and gets current value of given atomic long.
+
[source,shell]
----
http://host:port/ignite?cmd=incr&cacheName={cacheName}&key={incrKey}&init={initialValue}&delta={delta}
http://host:port/ignite?cmd=incr&key={incrKey}&init={initialValue}&delta={delta}
----
+
[{request_table_props}]
Expand All @@ -506,12 +506,6 @@ http://host:port/ignite?cmd=incr&cacheName={cacheName}&key={incrKey}&init={initi
|Example


|`cacheName`
| string
| Yes
| Cache name. If not provided, default cache is used.
| partitionedCache

|`key`
| string
|
Expand Down Expand Up @@ -553,7 +547,7 @@ Subtracts and gets current value of given atomic long.
+
[source,shell]
----
http://host:port/ignite?cmd=decr&cacheName={cacheName}&key={key}&init={init_value}&delta={delta}
http://host:port/ignite?cmd=decr&key={key}&init={init_value}&delta={delta}
----
+
[{request_table_props}]
Expand All @@ -564,11 +558,6 @@ http://host:port/ignite?cmd=decr&cacheName={cacheName}&key={key}&init={init_valu
|Description
|Example

|`cacheName`
| string
|Yes
|Cache name. If not provided, the default cache ("default") is used.
|partitionedCache

|`key`
|string
Expand Down

0 comments on commit 6fa698f

Please sign in to comment.