Exemplo n.º 1
0
 public function deleteBlogPost(BlogPostInterface $blog)
 {
     $identifier = $blog->getIdentifier();
     try {
         $this->bucket->delete($identifier);
     } catch (RiakException $ex) {
         // Retry
         $this->bucket->delete($identifier);
     }
 }
Exemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 protected function doFlush()
 {
     try {
         $keyList = $this->bucket->getKeyList();
         foreach ($keyList as $key) {
             $this->bucket->delete($key);
         }
         return true;
     } catch (Exception\RiakException $e) {
         // Do nothing
     }
     return false;
 }