Scroll to navigation

KiokuDB::Backend::Role::Query::Simple(3pm) User Contributed Perl Documentation KiokuDB::Backend::Role::Query::Simple(3pm)
 

NAME

KiokuDB::Backend::Role::Query::Simple - Simple query api

VERSION

version 0.57

SYNOPSIS

    with qw(KiokuDB::Backend::Role::Query::Simple);
    sub simple_search {
        my ( $self, $proto ) = @_;
        # return all candidate entries in the root set matching fields in $proto
        return Data::Stream::Bulk::Foo->new(...);
    }

DESCRIPTION

This role requires a "simple_search" method to be implemented.
The method accepts one argument, the hash of the proto to search for.
This is still loosely defined, but the basic functionality is based on attribute matching:
    $kiokudb->search({ name => "Mia" });
will search for objects whose "name" attribute contains the string "Mia".
More complex operations will be defined in the future.

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.
2014-03-25 perl v5.18.2