QQ群: 281442983 (点击连接加入群:http://jq.qq.com/?_wv=1027&k=29LoD19) php
安装php-solr扩展html
安装完后会有相似这样的提示:
Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20090626/
把这个记住,而后修改php.ini(vim /usr/local/etc/php.ini ),把
extension_dir = "./"
修改成
extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/"vim
2. 创建自定义索引模式服务器
a) 打开E:\solr\conf\schema.xml 文件 找到
<fields>
……
<fields>
替换为
<fields>curl
1. <field name="id" type="string" indexed="true" stored="true" required="true" />测试
2. <field name="name" type=" string " indexed="true" stored="true" required="true" />ui
3. <field name="address" type="text" indexed="true" stored="true" multiValued="true" required="true" /> url
</fields>
<defaultSearchField>text</defaultSearchField>
替换为
<defaultSearchField>name</defaultSearchField>
删除全部< copyField …> 项spa
3. 创建PHP客户端
在wamp的www目录下创建solr目录。
将SolrPhpClient.zip解压,并将其中的Apache目录拷贝到www/solr目录下。.net
建立index.php文件,内容以下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="zh-CN">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
<title></title>
</head>
<body>
<?php
require_once( 'Apache/Solr/Service.php' );
// 链接solr服务器
$solr = new Apache_Solr_Service( '127.0.0.1', '8080', '/solr' );
//测试是否联通
if ( ! $solr->ping() ) {
echo 'Solr service not responding.';
exit;
}
//
// 建立两条记录nuby 和 zhangyan
//
$parts = array(
'nuby' => array(
'id' => 1,
'name' => '张岩',
'address' => array( '天安门', '北京天安门' ),
),
'zhangyan' => array(
'partno' => 2,
'name' => '张岩',
'model' => '北京五道口',
)
);
$documents = array();
foreach ( $parts as $item => $fields ) {
$part = new Apache_Solr_Document();
foreach ( $fields as $key => $value ) {
if ( is_array( $value ) ) {
foreach ( $value as $datum ) {
$part->setMultiValue( $key, $datum );
}
}
else {
$part->$key = $value;
}
}
$documents[] = $part;
}
//
// 建立索引
//
try {
$solr->addDocuments( $documents );
$solr->commit();
$solr->optimize();
}
catch ( Exception $e ) {
echo $e->getMessage();
}
//
// 查询
//
$offset = 0;
$limit = 10;
$queries = array(
'id: 1 OR id: 2',
'name: 张岩',
'name: 天安门'
);
foreach ( $queries as $query ) {
$response = $solr->search( $query, $offset, $limit );
if ( $response->getHttpStatus() == 200 ) {
if ( $response->response->numFound > 0 ) {
foreach ( $response->response->docs as $doc ) {
echo "$doc->partno $doc->name <br />";
}
echo '<br />';
}
}
else {
echo $response->getHttpStatusMessage();
}
}
?>
</body>
</html>
QQ群: 281442983 (点击连接加入群:http://jq.qq.com/?_wv=1027&k=29LoD19)