X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=index%2Ftrunc.c;h=1c70d4f7cd10c6ff37d7008759116802b4564428;hb=98578de25d24d3aa0e50bb190e603adee4e920ce;hp=63b27e8e8d38b30c1aa7b5d614c7c6951fd8f539;hpb=2cd05dfd682c368fd3bd73912144344d2954325f;p=idzebra-moved-to-github.git diff --git a/index/trunc.c b/index/trunc.c index 63b27e8..1c70d4f 100644 --- a/index/trunc.c +++ b/index/trunc.c @@ -1,4 +1,4 @@ -/* $Id: trunc.c,v 1.59 2005-06-06 21:31:08 adam Exp $ +/* $Id: trunc.c,v 1.63 2005-08-25 10:37:05 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -146,6 +146,8 @@ static RSET rset_trunc_r(ZebraHandle zi, const char *term, int length, struct trunc_info *ti; int rscur = 0; int rsmax = (to-from)/i_add + 1; + NMEM rset_nmem_sub = nmem_create(); /* all sub rsets not needed + after this */ rset = (RSET *) xmalloc(sizeof(*rset) * rsmax); rsfd = (RSFD *) xmalloc(sizeof(*rsfd) * rsmax); @@ -156,13 +158,13 @@ static RSET rset_trunc_r(ZebraHandle zi, const char *term, int length, rset[rscur] = rset_trunc_r(zi, term, length, flags, isam_p, i, i+i_add, merge_chunk, preserve_position, - term_type, rset_nmem, + term_type, rset_nmem_sub, kctrl, scope, 0); else rset[rscur] = rset_trunc_r(zi, term, length, flags, isam_p, i, to, merge_chunk, preserve_position, - term_type, rset_nmem, + term_type, rset_nmem_sub, kctrl, scope, 0); rscur++; } @@ -205,6 +207,7 @@ static RSET rset_trunc_r(ZebraHandle zi, const char *term, int length, xfree(rset); xfree(rsfd); heap_close(ti); + nmem_destroy(rset_nmem_sub); } else if (zi->reg->isamc) { @@ -400,13 +403,15 @@ RSET rset_trunc(ZebraHandle zi, ISAM_P *isam_p, int no, const char *term, int length, const char *flags, int preserve_position, int term_type, NMEM rset_nmem, struct rset_key_control *kctrl, int scope, - struct ord_list *ol) + struct ord_list *ol, int reg_type, + zint hits_limit, const char *term_ref_id) { TERMID termid; RSET result; int trunc_chunk; - termid = rset_term_create(term, length, flags, term_type, rset_nmem, ol); + termid = rset_term_create(term, length, flags, term_type, rset_nmem, ol, + reg_type, hits_limit, term_ref_id); if (no < 1) return rsnull_create(rset_nmem, kctrl, termid); @@ -452,7 +457,7 @@ RSET rset_trunc(ZebraHandle zi, ISAM_P *isam_p, int no, yaz_log(YLOG_WARN, "Unknown isam set in rset_trunc"); return rsnull_create(rset_nmem, kctrl, 0); } - trunc_chunk = atoi(res_get_def(zi->res, "truncchunk", "100")); + trunc_chunk = atoi(res_get_def(zi->res, "truncchunk", "20")); result = rset_trunc_r(zi, term, length, flags, isam_p, 0, no, trunc_chunk, preserve_position, term_type, rset_nmem, kctrl, scope, termid);