Skip to content

Commit

Permalink
ja: Fix typo of Big-O notation in KVS section (donnemartin#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wintus authored and donnemartin committed Jul 6, 2019
1 parent 33431e6 commit c65a721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README-ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ NoSQL は **key-value store**、 **document-store**、 **wide column store**、

> 概要: ハッシュテーブル
キーバリューストアでは一般的に0、1の読み、書きができ、それらはメモリないしSSDで裏付けられています。データストアはキーを [辞書的順序](https://en.wikipedia.org/wiki/Lexicographical_order) で保持することでキーの効率的な取得を可能にしています。キーバリューストアではメタデータを値とともに保持することが可能です。
キーバリューストアでは一般的にO(1)の読み書きができ、それらはメモリないしSSDで裏付けられています。データストアはキーを [辞書的順序](https://en.wikipedia.org/wiki/Lexicographical_order) で保持することでキーの効率的な取得を可能にしています。キーバリューストアではメタデータを値とともに保持することが可能です。

キーバリューストアはハイパフォーマンスな挙動が可能で、単純なデータモデルやインメモリーキャッシュレイヤーなどのデータが急速に変わる場合などに使われます。単純な処理のみに機能が制限されているので、追加の処理機能が必要な場合にはその複雑性はアプリケーション層に載せることになります。

Expand Down

0 comments on commit c65a721

Please sign in to comment.