Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi
i have thousands of pdf files in one server and i want to develop and internal web application to search some words inside each file....

one week ago i did a dll for this (using itextsharp), but it take a long time to receive a response (15 minutes aprox.)

what can i do to improve the response time?
any idea?

thanks

PS - actually i have 12000 pdf files and i have the url of each file in a sqlserver database
Posted

1 solution

I would think that you need to create an index of all the words in your files so you can do speedy searches. You could do this immediately by scanning all files or build it up gradually by creating it as each search is processed. Unfortunately the second option will still mean that early searches will still be quite slow.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900