Parent Directory
|
Revision Log
|
Patch
revision 109 by dpavlin, Wed Feb 21 20:22:07 2007 UTC | revision 110 by dpavlin, Wed Mar 14 20:02:19 2007 UTC | |
---|---|---|
# | Line 18 $coll->unlimit; | Line 18 $coll->unlimit; |
18 | ||
19 | print "indexing ", $coll->count, " items "; | print "indexing ", $coll->count, " items "; |
20 | ||
21 | my $search = Grep::Search->new(); | |
22 | ||
23 | while ( my $i = $coll->next ) { | while ( my $i = $coll->next ) { |
24 | ||
25 | Grep::Search->add( $i, $i->in_feed->owner->id ); | $search->add( $i, $i->in_feed->owner->id ); |
26 | ||
27 | print $i->id, ' '; | print $i->id, ' '; |
28 | } | } |
29 | ||
30 | print "\n"; | print "\n"; |
31 | ||
32 | Grep::Search->finish; | $search->finish; |
|
ViewVC Help | |
Powered by ViewVC 1.1.26 |