Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
KenyonY committed Dec 4, 2023
1 parent aa786bc commit 74cde66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ intuitive manner. You can use it just like a Python dictionary without worrying

## TODO

- [ ] Client-Server Architecture
- [x] Client-Server Architecture
- [ ] Benchmark
---

Expand All @@ -85,6 +85,9 @@ from flaxkv import dictdb
import numpy as np

db = dictdb('./test_db')
# or run server `flaxkv run --port 8000`, then:
# db = dictdb('http://localhost:8000', remote=True)

db[1] = 1
db[1.1] = 1 / 3
db['key'] = 'value'
Expand Down
5 changes: 4 additions & 1 deletion README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

## TODO

- [ ] 客户端-服务器架构
- [x] 客户端-服务器架构
- [ ] 性能测试

---
Expand All @@ -90,6 +90,9 @@ from flaxkv import dictdb
import numpy as np

db = dictdb('./test_db')
# or run server `flaxkv run --port 8000`, then:
# db = dictdb('http://localhost:8000', remote=True)

db[1] = 1
db[1.1] = 1 / 3
db['key'] = 'value'
Expand Down

0 comments on commit 74cde66

Please sign in to comment.