Lee -
Use the url parameter.
~/dev/solr/example/exampledocs: java -jar post.jar -help
SimplePostTool: version 1.2
This is a simple command line tool for POSTing raw XML to a Solr
port. XML data can be read from files specified as commandline
args; as raw commandline arg strings; or via STDIN.
Examples:
java -Ddata=files -jar post.jar *.xml
java -Ddata=args -jar post.jar '<delete><id>42</id></delete>'
java -Ddata=stdin -jar post.jar < hd.xml
Other options controlled by System Properties include the Solr
URL to POST to, and whether a commit should be executed. These
are the defaults for all System Properties...
-Ddata=files
-Durl=http://localhost:8983/solr/update
-Dcommit=yes
Core 1's update URL is likely something like http://localhost:8983/solr/1/update
Erik
On Mar 29, 2010, at 9:08 AM, Lee Smith wrote:
Hey All
From the docs deleting from an index os pretty simpl: java -
Ddata=args -Dcommit=no -jar post.jar "<delete><id>SP2514N</id></
delete>"
How about from a specific core? Say I wanted to delete id=12344
from core 1
Hope this makes sense and is easy to answer!
Regards
Lee