Log in

View Full Version : large search



cursed
02-13-2007, 02:40 AM
How would i make a search that could store the search query into a list and use the server to search without the users page to lag because i want it to search 5,000,000 things, and show a page that would say finished or no completed searching query.


hopefully my explanation was clear.

tech_support
02-14-2007, 06:52 AM
Well, of course it's going to lag. You'll just need a faster server.

djr33
02-14-2007, 08:49 AM
Vague question.

That's a lot to search through.

The options you have--
1. make your search query/operations more efficient. For example, double quotes take longer to parse than single quotes. But without seeing your code, no suggestions on this.
2. If you are doing a consistant operation on the data, then do it once and then save that into the database. This will save you from processing each time you run the search.

cursed
02-14-2007, 11:31 PM
I want something like http://milw0rm.com/cracker/insert.php

so when you insert a query, it will process it in another page.

mburt
02-14-2007, 11:34 PM
Say, if query is found, for example:

header("Location: mypage.htm");

cursed
02-16-2007, 12:56 AM
a little more info would help?