/**
  * Remove  a post from the index
  *
  * @param Post $post the post being deleted
  */
 public function delete_post($post)
 {
     $this->_database->delete_document($this->get_uid($post));
 }