
Plucene::SearchEngine::Index::RSS - Index RSS files

my @articles = Plucene::SearchEngine::Index::URL->(
"http://planet.perl.org/rss10.xml"
);
$indexer->index($_->document) for @articles;

This examines RSS files and creates document hashes for individual items in the feed. The objects have the following Plucene fields:
The date that this article was published.
The creator, if one was specified.
The name of the feed from which this was taken.
The URL that the article links to, and the URL of the feed.
The text of the article.
The title of the article.

Since Plucene::SearchEngine::Index


Simon Cozens, <simon@cpan.org>

Copyright (C) 2004 by Simon Cozens
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.