/**
  *
  */
 private function _populateSapiTableCache()
 {
     $bucket = $this->storageApi->getBucket($this->storageApiBucket);
     foreach ($bucket["tables"] as $table) {
         $this->_sapiTableCache[$table["id"]] = $table;
     }
 }
 public function deleteWriter($id)
 {
     $bucket = $this->storageApi->getBucket($this->getSysBucketId($id));
     foreach ($bucket['tables'] as $table) {
         $this->storageApi->dropTable($table['id']);
     }
     $this->storageApi->dropBucket($bucket['id']);
 }