Displaying 4 results from an estimated 4 matches for "fts_backend_xxx_lookup".
2019 Jan 06
2
Solr -> Xapian ?
For "rescan " and "optimize", wouldn't it be the dovecot core who
indicate which are to be dismissed (expunged), or re-ask for indexing a
particular (or all) uid ? WHy would the backend be aware of the
transactions on the mailbox ???
There is alredy "fts_backend_xxx_update_expunge", so I beleive the
management of the expunged messages is *NOT* in the backend,
2019 Jan 06
0
Solr -> Xapian ?
for fts_backend_xxx_lookup, where is specidifed in which field (to, cc,
subject, body, from, all) to lookup ?
On 2019-01-06 16:03, Joan Moreau wrote:
> For "rescan " and "optimize", wouldn't it be the dovecot core who indicate which are to be dismissed (expunged), or re-ask for indexing a particu...
2019 Jan 07
0
Solr -> Xapian ?
...context *)_ctx;
>
> int i=0;
>
> while(boxes[i]!=NULL)
> {
> if(fts_backend_xapian_lookup(backend,box[i],args,flags,result->box_results[i])<0) return -1;
> i++;
> }
> return 0;
> }
>
> On 2019-01-06 16:31, Joan Moreau via dovecot wrote:
>
> for fts_backend_xxx_lookup, where is specidifed in which field (to, cc, subject, body, from, all) to lookup ?
>
> On 2019-01-06 16:03, Joan Moreau wrote:
>
> For "rescan " and "optimize", wouldn't it be the dovecot core who indicate which are to be dismissed (expunged), or re-ask for in...
2019 Jan 06
3
Solr -> Xapian ?
...s_backend_update_context *ctx =
(struct xapian_fts_backend_update_context *)_ctx;
int i=0;
while(boxes[i]!=NULL)
{
if(fts_backend_xapian_lookup(backend,box[i],args,flags,result->box_results[i])<0)
return -1;
i++;
}
return 0;
}
On 2019-01-06 16:31, Joan Moreau via dovecot wrote:
> for fts_backend_xxx_lookup, where is specidifed in which field (to, cc, subject, body, from, all) to lookup ?
>
> On 2019-01-06 16:03, Joan Moreau wrote:
>
> For "rescan " and "optimize", wouldn't it be the dovecot core who indicate which are to be dismissed (expunged), or re-ask for in...