I have written a java class that crawls our site compiles a list of
links. I then populate a cf array from a java method that returns a java
vector. The crawling portion appears to take a couple of minutes, no
surprise, but I am stopping the population of the array after 15
minutes. Any suggestions? ideas?

Thanks!

Doug

code snippet:
<cfscript>
pages = ArrayNew(1);
crawler = createObject("java","Crawler");
crawler.crawl("http://site", "http://site", "false", 9);
// this line seems to take a looooong time
pages = crawler.getVisitedPages();
</cfscript>
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Reply via email to