Hi,
Is there any way to show how many biblios index has zebra? Running on the intranet searching for an item on item search I get some results.
You can use a special zebra index to query all records:
# export instance=your_instance
# yaz-client unix://var/run/koha/${instance}/bibliosocket
Z> base biblios
Z> find @attr 1=_ALLRECORDS @attr 2=103 ""
Z> quit
You can then compare with your MySQL data:
# sudo koha-mysql ${instance}
> SELECT COUNT(*) FROM biblio;
> \q
Regards