I'm new to Apache Solr. I want to import a rdf file into solr for indexing.I have googled it but I didn't find anything useful. please give me some pointers.
相关问题
- Solr Deduplication (dedupe) giving all zeros in si
- Solr (Sunspot), max results more than 30?
- Lucene Query on a DateField indexed by Solr
- Calculate the depth of subclass in the OWL ontolog
- How to token a word which combined by two words wi
相关文章
- RDF libraries for Scala [closed]
- Solr - _version_ field must exist in schema and be
- The difference between blank nodes and variables i
- SolrNet - Score always 0
- How can use the /export request handler via SolrJ?
- request counting for documents in apache solr
- How to search records between two coordinates usin
- Triple extraction from a sentance
You can also look for Siren that has the capability of adding RDF data to lucene
Solr accepts JSON documents. You can transform your RDF document into a JSON-LD document. JSON-LD is a RDF serialization format and it is part of RDF 1.1. You can safely go back and forth between JSON-LD and other RDF serializations and not loose any data.
My 2 cents on this experiment, let me know what you think about: http://andreagazzarini.blogspot.it/2014/12/a-solr-rdf-store-and-sparql-endpoint-in.html
Take a look at HttpDataSource example of DataImportHandler. It talks about processing RDF using XPathEntityProcessor.
Edit - Another blog - RDF Aggregates and Full Text Search on Steroids with Solr