table of contents
KiokuDB::Backend::Role::Query(3pm) | User Contributed Perl Documentation | KiokuDB::Backend::Role::Query(3pm) |
NAME¶
KiokuDB::Backend::Role::Query - Backend specific query API
VERSION¶
version 0.57
SYNOPSIS¶
with qw(KiokuDB::Backend::Role::Query); sub search { my ( $self, @args ) = @_; # return all entries in the root set matching @args (backend specific) return Data::Stream::Bulk::Foo->new(...); }
DESCRIPTION¶
This role is for backend specific searching. Anything that is not KiokuDB::Backend::Role::Query::Simple is a backend specific search, be it a Search::GIN::Query, or something else.
The backend is expected to interpret the search arguments which are passed through from "search" in KiokuDB as is, and return a Data::Stream::Bulk of matching entries.
AUTHOR¶
Yuval Kogman <nothingmuch@woobling.org>
COPYRIGHT AND LICENSE¶
This software is copyright (c) 2014 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.
2022-05-23 | perl v5.34.0 |