PHP删除Solr文档

 1 <?php
 2 $options = array
 3 (
 4     'hostname' => 'localhost',
 5     'port'     => '8080',
 6     'path'=>'solr/help_category',
 7     'wt'=>'json'
 8 );
 9 $client = new SolrClient($options); 
10 
11 $entryId=501000;  
12 $client->deleteById($entryId);
13 //$client->deleteByQuery('id:'.$entryId); 
14 $return=$client->commit();
15 var_dump($return);
16 ?>

 

posted @ 2014-10-23 15:04  偷吃蜂蜜的熊  阅读(203)  评论(0编辑  收藏  举报