タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

mmapとsqliteに関するdannのブックマーク (2)

  • Memory-Mapped I/O

    Memory-Mapped I/O The default mechanism by which SQLite accesses and updates database disk files is the xRead() and xWrite() methods of the sqlite3_io_methods VFS object. These methods are typically implemented as "read()" and "write()" system calls which cause the operating system to copy disk content between the kernel buffer cache and user space. Beginning with version 3.7.17 (2013-05-20), SQLi

  • SQLite、mmap対応で最大2倍高速化

    SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. 5月20日(米国時間)、SQLiteの最新版となる「SQLite 3.7.17」が公開された。いくつかの機能追加とバグ修正が実施されている。特に注目されるのはメモリマップI/Oと呼ばれる機能が追加された点にある。この機能を有効にするとディスクI/Oが大量に発生するようなケースでメモリアクセスの量が減り、最大で2倍ほどの性能向上が期待できる。いくらかの危険性も伴うため、今回のリリースではデフォルトでは機能は無効化されている。 SQLiteは基的にread(8)/write(8)システムコールを使ってディスク上のデータベースファイルの内

  • 1