Re: Nutch 1.0 trunk Fetch Schedule

2009-03-18 Thread Stevan Kovacevic
well you can always write a bash script or a java class that does this. writing a java class is probably better and easier. you have a manual for importing nutch into eclipse in case you don't know how. i needed a similar thing done and it turned out that using java really is easier... On Wed,

Re: Nutch 1.0 trunk Fetch Schedule

2009-03-18 Thread MyD
Hi ripper, Thanks, do u know how to do it in java? I tried to, but haven't found the suitable classes. Thanks in advance. Cheers, MyD ripper07 wrote: well you can always write a bash script or a java class that does this. writing a java class is probably better and easier. you have a

Re: Nutch 1.0 trunk Fetch Schedule

2009-03-18 Thread n_developer
you have a manual for importing nutch into eclipse in case you don't know how can u pl mention the link... thanx in advance ripper07 wrote: well you can always write a bash script or a java class that does this. writing a java class is probably better and easier. you have a manual for

Re: Nutch 1.0 trunk Fetch Schedule

2009-03-18 Thread Stevan Kovacevic
ok this is how i did it. i created a class in the org.apache.nutch.crawl package, the same package where the crawl class (which is nutch's main class, called by the crawl command). in that class, you create the crawl class with the appropriate parameter. just look at the code once you import it

Re: Nutch 1.0 trunk Fetch Schedule

2009-03-18 Thread n_developer
ripper07 wrote: ok this is how i did it. i created a class in the org.apache.nutch.crawl package, the same package where the crawl class (which is nutch's main class, called by the crawl command). in that class, you create the crawl class with the appropriate parameter. just look at the