`
gcgmh
  • 浏览: 354945 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

solr curl

    博客分类:
  • Solr
阅读更多
//Let's say we have an XML file named artists.xml in the current directory. We can post it to Solr using the following command line:
curl http://localhost:8983/solr/update -H 'Content-type:text/xml; charset=utf-8' --data-binary @artists.xml

==========================================
//To use the solr.body feature for the example above, you would do this:
curl http://localhost:8983/solr/update -F solr.body=@artists.xml

//If the XML is short, then you can just as easily specify it literally on the command line:
curl http://localhost:8983/solr/update -F stream.body=' <commit />'

//Solr accessing a local file:
curl http://localhost:8983/solr/update -F stream.file=/tmp/artists.xml



Deleting documents
You can delete a document by its unique field (we delete two documents here):
<delete><id>artist:11604</id><id>artist:11603</id></delete>
Or, you can delete all of the documents that match a particular Lucene/Solr query (the query syntax is not discussed in this chapter):
<delete><query>timestamp:[* TO NOW-12HOUR]</query></delete>
    然后用curl命令提交doc给solr

    优化:

curl "http://localhost:8080/solr/update?maxSegments=2&optimize=true" 

curl http://localhost:8080/solr/update --data-binary "<optimize maxSegments=\"2\" waitFlush="true" waitSearcher="true" />" -H "Content-type:text/xml; charset=utf-8" 

注:
    Both commit and optimize take two additional boolean options that default to true:
<commit waitFlush="true" waitSearcher="true" />
分享到:
评论

相关推荐

    ES和solr搜索方案对比

    在查询方面,ES允许通过JSON格式或者URL进行查询,并且可以通过curl或者ElasticSearch-Head(一个类似于Solr Admin页面的工具)来进行操作。ES的查询灵活性在于它支持在查询过程中进行完整的脚本编写,从而实现对...

    最新版linux solr-8.8.1.tgz

    curl -O https://downloads.apache.org/solr/8.8.1/solr-8.8.1.tgz ``` 下载完成后,解压文件: ```bash tar -zxvf solr-8.8.1.tgz ``` 这将在当前目录下创建一个名为 "solr-8.8.1" 的文件夹,包含 Solr 的所有...

    solr集群搭建

    7. **创建集合**:使用Solr的Admin UI或Solr命令行工具(如`curl`)向ZooKeeper注册新的集合。集合的配置包括分割策略(sharding)、副本数量和索引配置等。 8. **负载均衡与路由**:SolrCloud会自动处理请求的路由...

    最新版linux solr-8.8.0.tgz

    7. **导入数据**:Solr使用`bin/post`工具或者Solr Cloud的`curl`命令来导入JSON、XML或其他格式的数据。例如,`bin/post -c &lt;core_name&gt; exampledocs/*.xml`可以导入“exampledocs”目录下的所有XML文件。 8. **...

    solr学习笔记

    curl http://192.168.92.12:8987/solr/mycollection/config -H 'Content-type: application/json' -d '{"add-runtimelib":{"name":"mmseg-core","version":1},"update-runtimelib":{"name":"jarblobname","version...

    linux版solr

    7. 将数据导入Solr,可以通过`curl`命令或者使用Solr提供的客户端工具。 8. 进行查询测试,验证索引和搜索功能是否正常工作。 总的来说,Linux版Solr 4.10.3提供了强大的全文搜索功能,适合在各种规模的企业应用中...

    php 扩展 -- solr-1.0.1

    如果题目给出的是solr-1.0.1,可以通过wget或curl下载,例如:`wget http://pecl.php.net/get/solr-1.0.1.tgz`。 2. **解压源码**:使用`tar -zxvf solr-1.0.1.tgz`命令解压下载的文件到当前目录。 **三、编译与...

    Apache Solr最新版任意文件读取0day1

    curl "http://192.168.33.130:8983/solr/db/debug/dump?param=ContentStreams" -F "stream.url=file:///C:/a.txt" ``` 这里的`stream.url`指定了要读取的本地文件路径。如果服务器上存在文件`C:/a.txt`,攻击者就能...

    跟益达学Solr5之索引文件夹下所有文件

    - 使用命令行工具或Solr Admin UI触发数据导入,如`curl "http://localhost:8983/solr/my_core/dataimport?command=full-import"`。 - 数据导入过程会扫描指定文件夹,解析文件内容,并将结果存入索引。 6. **...

    solr 搭建和使用

    curl 'http://localhost:8983/solr/mycore/update?commit=true' --data-binary '{"add":{"doc":{"id":"1","title":"我的文档标题","content":"这是我的文档内容"}},"commit":{}}' -H 'Content-type:application/json...

    Solr的安装1

    安装完成后,为了验证Solr是否正常运行,你可以使用Solr提供的命令行工具和curl来测试其功能。以下是一个示例脚本: - `./create.sh` 脚本创建一个名为“test”的Solr集合: - 它首先定义ZooKeeper的地址,然后...

    src.rar_solr

    1. 使用 HTTP POST 方法向 Solr 添加文档,例如 `curl http://localhost:8983/solr/my_core/update/json?commit=true -H 'Content-Type: application/json' -d '{"add":{"doc":{ "id":"1", "title":"测试文档", ...

    Solr:将solr与spring boot一起使用

    compose builddocker-compoer up -d 升高solr以检查其是否正确升高后,我们可以使用以下URL访问solr控制台open http://localhost:8983/solr/ # /vehicles/query 我们也可以调用Api Solr来获取所有solr文档curl -...

    在tomcat环境下搭建solr和mmseg4j搜索引擎

    例如,使用`curl`向Solr发送JSON数据进行索引: ```bash curl -X POST -H 'Content-Type:application/json' --data-binary @documents.json http://localhost:8080/solr/core_name/update?commit=true ``` 8. *...

    solrServer8.0.0.tar.gz

    1. 使用wget或curl命令从Apache官方网站下载Solr 8.0.0的tar.gz文件: ``` wget https://archive.apache.org/dist/lucene/solr/8.0.0/solr-8.0.0.tgz 或 curl -O ...

    ams-solr-metrics-mpack:适用于Ambari Infra Solr的AMS Solr水槽

    适用于Ambari Infra Solr的AMS Solr水槽 (与Ambari 2.7.0+不兼容,但指标接收器是从2.7.0版开始内置的Infra Solr的) 从源代码生成mpack ...curl -k -O -L https://github.com/oleewere/ams-solr-metrics-mpac

    solr-monitor:监视Solr复制运行状况的简单脚本

    依赖项:curl,xmllint,xmlstarlet。 在Linux和OS X上测试过Solr 4.1 API。 默认情况下,它将在端口8983上的localhost中检查Solr内核,并且复制容限为15分钟。 这意味着,如果从属内核位于主控之后,并且在15分钟...

    SolrClient:Solr客户端

    这个文件可能是实现CURL(Client URL)库来发起HTTP请求到Solr服务器,因为CURL是PHP中常用的一个库,用于发送HTTP请求。CURL支持多种协议,包括HTTP,这对于与Solr API进行交互非常有用,因为Solr通常使用...

Global site tag (gtag.js) - Google Analytics