Skip to content

Latest commit

 

History

History
30 lines (17 loc) · 543 Bytes

pmimporter.md

File metadata and controls

30 lines (17 loc) · 543 Bytes

pmimporter

  • tracking source for imported stuff?

Adding LevelDB support

Compile using latest php compile script

Iterate over leveldb to generate regions. Return regions.

Fork and read chunk Dara's

getIterator(); // Loop in iterator style while($it->valid()) { var_dump($it->key() . " => " . $it->current() . "\n"); } // Or loop in foreach foreach($it as $key => $value) { echo "{$key} => {$value}\n"; }