Dev Diaries for the Week of 2015-03-23

Posted by: Riccardo Spagni (fluffypony)

To download the podcast directly please use this link to the MP3, or this link to the AAC/MP4, or this link to the FLAC.

A brief summary of the points discussed follows, a full transcription of the podcast is outstanding (can be submitted via Github Issues).

In this week's podcast we discuss the new blockchain utilities in preparation for their final merge.

  1. blockchain_converter converts between database types, right now its only job is to convert from the old in-RAM system to an lmdb database. It chews memory, though, as it has to keep the blockchain in RAM as well as the lmdb driver.

  2. blockchain_export takes the default database (set at compile time) and exports it to a blockchain.raw file. This is the file we're going to make available for download as the blockchain bootstrap in future.

  3. blockchain_import imports from the blockchain.raw file into whatever database format (specified at runtime, the default database is specified at compile time). It allows you to import with verification off for the fastest possible speed, specify LMDB options, and specify a batching count for loading in chunks.

Until next week!


Post tags : Monero Missives, Dev Diaries, BlockchainDB, Monero Core