Skip to content

Commit 2f40b3d

Browse files
committed
Fixed getting started guide
1 parent 6eca405 commit 2f40b3d

File tree

1 file changed

+23
-24
lines changed

1 file changed

+23
-24
lines changed

src/content/getting-started.mdx

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -53,32 +53,31 @@ import {Steps, Tabs} from 'nextra/components'
5353

5454
### Interacting with Oxia
5555

56-
<Tabs items={['CLI', 'Go', 'Java', 'Python']}>
57-
<Tabs.Tab>
58-
There is a convenient CLI tool that allows you to interact with the records stored in Oxia.
56+
There is a convenient CLI tool that allows you to interact with the records stored in Oxia.
5957

60-
```shell
61-
# Write or update a record
62-
$ oxia client put my-key my-value
63-
{"key":"my-key","version_id":2132,"created_timestamp":"2025-06-17T17:09:26.043-07:00","modified_timestamp":"2025-06-17T17:09:26.043-07:00","modifications_count":0,"ephemeral":false,"session_id":0,"client_identity":""}
58+
```shell
59+
# Write or update a record
60+
$ oxia client put my-key my-value
61+
{"key":"my-key","version_id":2132,"created_timestamp":"2025-06-17T17:09:26.043-07:00","modified_timestamp":"2025-06-17T17:09:26.043-07:00","modifications_count":0,"ephemeral":false,"session_id":0,"client_identity":""}
6462

6563

66-
# Read the value of a key
67-
$ oxia client get my-key
68-
my-value
64+
# Read the value of a key
65+
$ oxia client get my-key
66+
my-value
67+
68+
# Read value with version information
69+
$ oxia client get my-key -v
70+
my-value
71+
---
72+
{"key":"my-key","version_id":2132,"created_timestamp":"2025-06-17T17:09:26.043-07:00","modified_timestamp":"2025-06-17T17:09:26.043-07:00","modifications_count":0,"ephemeral":false,"session_id":0,"client_identity":""}
73+
```
74+
75+
### Using client SDKs
76+
77+
Oxia has several client SDKs that can be used:
78+
79+
1. [Java SDK](/docs/clients/java)
80+
1. [Go SDK](/docs/clients/go)
81+
1. [Python SDK](/docs/clients/python)
6982

70-
# Read value with version information
71-
$ oxia client get my-key -v
72-
my-value
73-
---
74-
{"key":"my-key","version_id":2132,"created_timestamp":"2025-06-17T17:09:26.043-07:00","modified_timestamp":"2025-06-17T17:09:26.043-07:00","modifications_count":0,"ephemeral":false,"session_id":0,"client_identity":""}
75-
```
76-
</Tabs.Tab>
77-
<Tabs.Tab>
78-
todo...
79-
</Tabs.Tab>
80-
<Tabs.Tab>
81-
todo...
82-
</Tabs.Tab>
83-
</Tabs>
8483
</Steps>

0 commit comments

Comments
 (0)