Query: search::gin::query::set
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Search::GIN::Query::Set(3pm) User Contributed Perl Documentation Search::GIN::Query::Set(3pm)NAMESearch::GIN::Query::Set - Create queries with set operationsVERSIONversion 0.08SYNOPSIS# build a query like: # (type:pdf OR type:png) AND (name:Homer OR name:Bart) use Search::GIN::Query::Set; use Search::GIN::Query::Manual; my $query = Search::GIN::Query::Set->new( operation => 'INTERSECT', subqueries => [ Search::GIN::Query::Manual->new( values => { type => [qw(pdf png)] } ), Search::GIN::Query::Manual->new( values => { name => [qw(Homer Bart)] } ), ] );DESCRIPTIONCreates a manual GIN query that can be used to search using basic set theory, in order to build more complex queries. This query doesn't provide any specific search, it's just a set operator for subqueries. You can build complex queries by using other set queries as subqueries for a set query.METHODS/SUBROUTINES new Creates a new query.ATTRIBUTESsubqueries The subqueries to process operation One of the basic set operators: "UNION", "INTERSECT" and "EXCEPT". The default is "UNION"AUTHORYuval Kogman <nothingmuch@cpan.org>COPYRIGHT AND LICENSEThis software is copyright (c) 2010 by Yuval Kogman, Infinity Interactive. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.10.1 2011-01-31 Search::GIN::Query::Set(3pm)
Similar Topics in the Unix Linux Community |
---|
Query User |
Query SQL get two values differents from the same columns |
Search multiple pattern from list |
Printing Terminal Output to a Error File |
AIX Query |