We have a browser based application desined for user to raise IT requests. Problem is when user creats a request the index takes almost 15 min to search the document.
We have used a agent to manually index the database, the agent set to run after the document created or modified.
Dim session As New NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase
If ( db.LastModified > db.LastFTIndexed )
Then
Call db.UpdateFTIndex( False )
End If
The agent run sucessfull but still index process takes 15 min to update.
Any help to getting the database index immediately.
I have gone through the document previously which say there will be a delay of 15 min. I wanted to further reduce the deplay and wanted an actual immediate indexing. Hence i have used the code pasted in the previous posting.
As per my bussiness requirement the db should get indexed immediately once the document is create dor modified.
Hence i have used the code for manual indexing but still i am not able to get the desired results.