Author: Jim
Email: 
Message:
UDM is returning zero results using perl frontend on redhat 6.2.

According to the following results (and my understanding of the
Udmsearch docs) there are 164202 10 character words (table ndict10),
251805 6 character words (table ndict6), and 174578 two character words
(table ndict2) in the database. 

I still think this thing doesn't know what mode the indexer is in
(multi-crc). Is there a configuration file for search.pl that is
separate from indexer.conf? It may think it's in single table mode, and
therefore should be looking at table "dict" (which exists, but does have
zero elements) rather than the ndictXX tables for multi table mode.

Results:


mysql> select count(*) from udmsearch.dict;
+----------+
| count(*) |
+----------+
|        0 |
+----------+
1 row in set (0.00 sec)
 
mysql> select count(word_id) from udmsearch.ndict10;
+----------------+
| count(word_id) |
+----------------+
|         164202 |
+----------------+
1 row in set (0.00 sec)

mysql> select count(word_id) from udmsearch.ndict6;
+----------------+
| count(word_id) |
+----------------+
|         251805 |
+----------------+
1 row in set (0.02 sec)

mysql> select count(word_id) from udmsearch.ndict2;
+----------------+
| count(word_id) |
+----------------+
|         175478 |
+----------------+
1 row in set (0.02 sec)


Reply: <http://search.mnogo.ru/board/message.php?id=550>

______________
If you want to unsubscribe send "unsubscribe udmsearch"
to [EMAIL PROTECTED]

Reply via email to