avocets
Avocets
rss 2.0 subscribe to this page
search


related to perl+application_development
2 + programming
1 + sax
1 + search_engine
1 + xml
view all
•  projects
•  owners
•  tags

From the website:

XML::Generator::PerlData provides a simple way to generate SAX2 events from nested Perl data structures, while providing finer-grained control over the resulting document streams.

Processing comes in two flavors: Simple Style and Stream Style:

In a nutshell, 'simple style' is best used for those cases where you have a a single Perl data structure that you want to convert to XML as quickly and painlessly as possible. 'Stream style' is more useful for cases where you are receiving chunks of data (like from a DBI handle) and you want to process those chunks as they appear. See PROCESSING METHODS for more info about how each style works.

tagged application_development perl sax xml by winkler4 ...on 03-APR-07

KinoSearch is a loose port of the Java search engine library Apache Lucene, written in Perl and C. The archetypal application is website search, but it can be put to many different uses.

Features

  • Extremely fast and scalable - can handle millions of documents
  • Incremental indexing (addition/deletion of documents to/from an existing index).
  • Full support for 12 Indo-European languages.
  • Support for boolean operators AND, OR, and AND NOT; parenthetical groupings, and prepended +plus and -minus
  • Algorithmic selection of relevant excerpts and highlighting of search terms within excerpts
  • Highly customizable query and indexing APIs
  • Phrase matching
  • Stemming
  • Stoplists

Catalyst is an elegant web application framework, extremely flexible yet extremely simple. It's similar to Ruby on Rails, Spring (Java), and Maypole, upon which it was originally based.

MVC

Catalyst follows the Model-View-Controller (MVC) design pattern, allowing you to easily separate concerns, like content, presentation, and flow control, into separate modules. This separation allows you to modify code that handles one concern without affecting code that handles the others. Catalyst promotes the re-use of existing Perl modules that already handle common web application concerns well.

Here's how the M, V, and C map to those concerns, with examples of well-known Perl modules you may want to use for each.

If you're unfamiliar with MVC and design patterns, you may want to check out the original book on the subject, Design Patterns, by Gamma, Helm, Johnson, and Vlissides, also known as the Gang of Four (GoF). Many, many web application frameworks are based on MVC, including all those listed above.

tagged application_development perl programming by winkler4 ...on 02-JUL-06