我已经实施了sphinx来搜索单词并且它正常工作。目前我正在使用
创建表中存在的所有记录的索引getEventsOfUploadedFile();
$scope.events;
function getEventsOfUploadedFile()
{
Event.getUploadRead()
.success(function(event){
$scope.events=event;
})
.error(function (error) {
$scope.status = 'Unable to load event data: ';
});
}
但是,现在我想创建部分索引,即索引应该仅针对表中新添加的记录发生,旧索引也应该保留。
答案 0 :(得分:1)
无法在Sphinx中向普通索引中添加新条目。您只能update attributes或使用所谓的delta indexing scheme。
另一种方法是使用real-time indexes,可以使用SphinxQL查询进行更新。