FTSearch Count Unindexed Documents

Is there any solution to get the “Count unindexed Documents” - property of a Notesdatabase in LotusScript (like in NotesClient DB-Properties?) or is there any other way to solve this problem:I don’t want to wait for the server to update the indexes, and i don’t want to update all indexes of all DB’s i’m searching in.

Btw.: Im running the FTSearch from a webclient.

Any help welcome.

Subject: FTSearch Count Unindexed Documents

What I did is create a function that calls the FTSearch function in the C API from a DOS prompt. You would then call this function after you have made updates to ensure that the database is current, just before you make a search. The idea is you need to make sure this call finishes before continuing to run your script so you know the indexing is finished (= up to date).

Another alternative is using db.Search which uses @Formulas instead and does not require the index to be refreshed.

Good luck!

-Jeff