GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Catalyst::Model::Xapian(3) User Contributed Perl Documentation Catalyst::Model::Xapian(3)

Catalyst::Model::Xapian - Catalyst model for Search::Xapian.

    my ($it,$res)= $c->comp('MyApp::M::Xapian')->search(
      $c->req->param('q'),
      $c->req->param('page') ||0 ,
      $c->req->param('itemsperpage')||0
    );
    $c->stash->{searchresults}=$res;
    $c->stash->{iterator}=$it;

This model class wraps Search::Xapian to provide a friendly, paged interface to Xapian (www.xapian.org) indexes. This class adds a little extra convenience on top of the Search::Xapian class. It expects you to use the QueryParser, and sets up some keywords based on the standard omega keywords (id, host, date, month, year,title), so that you can do searches like

  'fubar site:microsoft.com'

db
Path to the index directory. will default to <MyApp>/index.
language
Language to use for stemming. Defaults to english
page_size
Default page sizes for Data::Page. Defaults to 10.
utf8_query
Queries are passed as utf8 strings. defaults to 1.
order_by_date
Sets weighting to order by docid descending rather than the usual BM25 weighting. Off by default.

new
Constructor. sets up the db and qp accessors. Is called automatically by Catalyst at startup.
search <q>,[<page>],[<page_size>]
perform a search using the Xapian QueryBuilder. expands the document data using extract_data. You can override the page size per query by passing page size as a final argument to the function. returns a Data::Page object and an arrayref to the extracted document data.
prepare_enq <enq>
Prepare enquire object before getting mset. Allows you to modify ordering and such in your subclass.
extract_data <item> <query>
Extract data from a Search::Xapian::Document. Defaults to using Storable::thaw.
qp
Query Parser. The Search::Xapian::QueryParser object used to parse the query.

Marcus Ramberg <mramberg@cpan.org>

This library is free software . You can redistribute it and/or modify it under the same terms as perl itself.
2010-03-24 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.