Пример #1
0
 public function addIndexSchema(IndexSchema $indexSchema)
 {
     $file = $this->getIndexFile();
     $file->seek(0, SEEK_END);
     $index = $file->tell() / IndexSchema::PAGE_SIZE;
     $file->write($indexSchema->getData());
     return $index;
 }