我基于graphdb documentation在ontograph graphdb中创建了一个Lucene索引。 但是我不知道如何用sparql删除索引。
Sparql创建索引
PREFIX luc: <http://www.ontotext.com/owlim/lucene#>
INSERT DATA {
luc:analyzer luc:setParam "com.example.CustomAnalyzerFactory" .
luc:index luc:setParam "uris".
luc:moleculeSize luc:setParam "1".
luc:myIndex luc:createIndex "true".
}
<http://www.ontotext.com/owlim/lucene#>
支持哪些选项来删除索引
答案 0 :(得分:0)
删除索引的唯一方法是从文件系统中物理删除它。索引位于$GDB_HOME/data/repositories/<repositoryId>/storage/lucene/<indexId>
中。数据库重新启动后,所有插件信息将消失。
请注意,除非刷新该插件,否则它将不占用任何资源!话虽如此,我强烈建议您检查Lucene Connector,它支持与数据库更新和删除索引的自动数据同步:
http://graphdb.ontotext.com/documentation/standard/lucene-graphdb-connector.html