# ARSEEK

```json metadata
{
  "title": "ARSEEK",
  "description": "Sets the ARINSERT / ARRING cursor to a specific index.",
  "categories": ["docs","develop","stack","oss","rs","rc","oss","kubernetes","clients"],
  "arguments": [{"key_spec_index":0,"name":"key","type":"key"},{"name":"index","type":"integer"}],
  "syntax_fmt": "ARSEEK key index",
  "complexity": "O(1)",
  "group": "array",
  "command_flags": ["WRITE","FAST"],
  "acl_categories": ["ARRAY"],
  "since": "8.8.0",
  "arity": 3,
  "key_specs": [{"begin_search":{"index":{"pos":1}},"find_keys":{"range":{"lastkey":0,"limit":0,"step":1}},"flags":["RW","UPDATE"]}],
  "tableOfContents": {"sections":[{"id":"required-arguments","title":"Required arguments"},{"id":"examples","title":"Examples"},{"id":"return-information","title":"Return information"}]}

,
  "codeExamples": []
}
```Sets the ARINSERT / ARRING cursor to a specific index.

## Required arguments

<details open><summary><code>key</code></summary>

The name of the key that holds the array.

</details>

<details open><summary><code>index</code></summary>

The zero-based integer index to set as the new insert cursor position for subsequent [`ARINSERT`](https://redis.io/docs/latest/commands/arinsert) calls.

</details>

## Examples


ARINSERT myarray "a"
ARINSERT myarray "b"
ARNEXT myarray
ARSEEK myarray 10
ARINSERT myarray "c"
ARNEXT myarray


## Return information

**RESP2:**

[Integer reply](../../develop/reference/protocol-spec#integers): 1 if the cursor was set, 0 if the key does not exist.

**RESP3:**

[Integer reply](../../develop/reference/protocol-spec#integers): 1 if the cursor was set, 0 if the key does not exist.



