翻訳と辞書
Words near each other
・ Bitboard
・ BitBoys
・ Bitbucket
・ Bitburg
・ Bitburg Airport
・ Bitburg controversy (1985)
・ Bitburg Middle-High School
・ Bitburg-Land
・ Bitburg-Prüm
・ Bitburger brewery
・ Bitburger Land
・ Bitburger Open
・ BITC
・ BitC
・ Bitcasa
Bitcask
・ Bitch
・ Bitch (band)
・ Bitch (E-40 song)
・ Bitch (insult)
・ Bitch (Law & Order)
・ Bitch (magazine)
・ Bitch (Meredith Brooks song)
・ Bitch (performer)
・ Bitch (Sevendust song)
・ Bitch (short story)
・ Bitch (The Rolling Stones song)
・ Bitch Alert
・ Bitch and Animal
・ Bitch Bad


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Bitcask : ウィキペディア英語版
Bitcask

Bitcask is an Erlang application that provides an API for storing and retrieving key/value data into a log-structured hash table. The design owes a lot to the principles found in log-structured file systems and draws inspiration from a number of designs that involve log file merging.
==Strengths==

Bitcask has a number of advantages owing to its write-once, append-only on-disk data-format and its use of an in-memory hash-table of keys for lookups:
* Low latency for read and write operations.
* High throughput, especially when writing an incoming stream of random items: Because the data being written doesn't need to be ordered on disk and because the log-structured design allows for minimal disk-head movement during writes, these operations generally saturate the I/O and disk bandwidth.
* Single seek to retrieve any value: Bitcask's in-memory hash-table of keys points directly to the locations on disk where the data resides. Bitcask never needs more than one disk-seek to read a value, and the operating system's file-system caching can obviate the need for disk-seeks entirely for some lookups.
* Predictable lookup and insert performance: Read operations as well as write operations have fixed, predictable behavior. Write operations require only a seek to the end of the current file that is open for writing and an append to that file.
* Fast, bounded crash recovery: Bitcask's disk format makes recovery straightforward. The only items that might be lost are partially written records at the tail of the file last opened for writes. Recovery need only review the last record or two written and verify checksums to ensure that the data is consistent.
* Easy backup: Bitcask's disk format means that any utility that archives or copies files in disk-block order will properly backup or copy a Bitcask database.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Bitcask」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.