X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Freckeys.c;h=0ef2e3e06da7f46e354496ddc234043ae8470f55;hb=c33ea56e3771c3b80ba66ef8fda3a09cad171ebb;hp=346fd28817269257b280ac5e0c80ae33c4cd7dbd;hpb=34552d7bc714468512b1873f1d6b75608d6b4655;p=idzebra-moved-to-github.git diff --git a/index/reckeys.c b/index/reckeys.c index 346fd28..0ef2e3e 100644 --- a/index/reckeys.c +++ b/index/reckeys.c @@ -1,5 +1,5 @@ -/* $Id: reckeys.c,v 1.3 2005-11-09 11:51:29 adam Exp $ - Copyright (C) 1995-2005 +/* $Id: reckeys.c,v 1.7 2006-08-14 10:40:15 adam Exp $ + Copyright (C) 1995-2006 Index Data ApS This file is part of the Zebra server. @@ -15,9 +15,9 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with Zebra; see the file LICENSE.zebra. If not, write to the -Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA -02111-1307, USA. +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ #include @@ -53,12 +53,16 @@ struct zebra_rec_keys_t_ { struct zebra_rec_key_entry **zebra_rec_keys_mk_hash(zebra_rec_keys_t p, const char *buf, - size_t len) + size_t len, + const struct it_key *key) { unsigned h = 0; size_t i; + int j; for (i = 0; ilen; j++) + h = h * 65509 + CAST_ZINT_TO_INT(key->mem[j]); return &p->entries[h % (unsigned) p->hash_size]; } @@ -87,7 +91,7 @@ zebra_rec_keys_t zebra_rec_keys_open() p->decode_handle = iscz1_start(); p->nmem = nmem_create(); - p->hash_size = 127; + p->hash_size = 1023; p->entries = 0; init_hash(p); @@ -148,7 +152,8 @@ int zebra_rec_keys_add_hash(zebra_rec_keys_t keys, const char *str, size_t slen, const struct it_key *key) { - struct zebra_rec_key_entry **kep = zebra_rec_keys_mk_hash(keys, str, slen); + struct zebra_rec_key_entry **kep = zebra_rec_keys_mk_hash(keys, + str, slen, key); while (*kep) { struct zebra_rec_key_entry *e = *kep; @@ -251,3 +256,11 @@ int zebra_rec_keys_read(zebra_rec_keys_t keys, } return 1; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +