This module generates SAX events which will create an RSS 1.0 document, based on easy to use RSS-related methods like item() and channel().
RSS 1.0 ドキュメントを作るための SAX イベントを生成する Perl モジュール。XML::RSS との違いは
Because it generates SAX events, this module can be used to write a document to a handle as a stream. XML::RSS requires you to create the entire document in memory first.
It has support for arbitrary RSS 1.0 modules, including ones you create.
1. SAX イベントを生成するので、ファイル書き出しをストリームで行える。(XML::RSS はオンメモリで作って一気に書き出す。)
2. 任意の RSS 1.0 モジュールを使える。
だそう。2. は XML::RSS の add_module メソッドがあると思うのですが。