summary refs log tree commit diff
path: root/lib/Net/Riak/Search.pm
diff options
context:
space:
mode:
authorRobin Edwards <robin.ge@gmail.com>2011-08-08 12:17:47 +0100
committerRobin Edwards <robin.ge@gmail.com>2011-08-08 12:17:47 +0100
commitfbc19bcb8f001d5a9479bf89d3c466568c7943bf (patch)
tree31d51b3af84ab9f2879ef2403139ca04cce7c7f3 /lib/Net/Riak/Search.pm
parentammended error in synopsis (diff)
parentupdate changelog (diff)
downloadnet-riak-fbc19bcb8f001d5a9479bf89d3c466568c7943bf.tar.gz
Merge branch 'master' of github.com:franckcuny/net-riak
Diffstat (limited to 'lib/Net/Riak/Search.pm')
-rw-r--r--lib/Net/Riak/Search.pm85
1 files changed, 85 insertions, 0 deletions
diff --git a/lib/Net/Riak/Search.pm b/lib/Net/Riak/Search.pm
new file mode 100644
index 0000000..ee2ed57
--- /dev/null
+++ b/lib/Net/Riak/Search.pm
@@ -0,0 +1,85 @@
+package
+Net::Riak::Search;
+use Moose;
+
+#ABSTRACT: Search interface
+
+with 'Net::Riak::Role::Base' => {classes =>
+      [{name => 'client', required => 0},]};
+
+sub search {
+    my ($self, $params) = @_;
+    $self->client->search($params);
+};
+
+sub setup_indexing {
+    my ($self, $bucket) = @_;
+    $self->client->setup_indexing($bucket);
+};
+
+1;
+
+=head1 SYNOPSIS
+
+    my $client = Net::Riak->new(...);
+    my $bucket = $client->bucket('foo');
+
+    # retrieve an existing object
+    my $obj1 = $bucket->get('foo');
+
+    # create/store a new object
+    my $obj2 = $bucket->new_object('foo2', {...});
+    $object->store;
+
+    $bucket->delete_object($key, 3); # optional w val
+
+=head1 DESCRIPTION
+
+L<Net::Riak::Search> allows you to enable indexing documents for a given bucket and querying/searching the index.
+
+=head2 METHODS
+
+=head3 setup_indexing
+
+    $client->setup_indexing('bucket_name');
+
+Does the same as :
+
+    curl -X PUT -H "content-type:application/json" http://localhost:8098/riak/bucket_name -d '{"props":{"precommit":[{"mod":"riak_search_kv_hook","fun":"precommit"}]}'
+
+but takes in account previouses precommits.
+
+=head3 search
+
+    my $response = $client->search(
+        index => 'bucket_name',
+        q => 'field:value'
+    );
+    # is the same as :
+    my $response = $client->search(
+        q => 'bucket_name.field:value'
+    );
+
+Search the index
+
+=over 4
+
+=item wt => 'XML|JSON'
+
+defines the response format (XML is the default value as for Solr/Lucene)
+
+=item q
+
+the query string
+
+=item index
+
+is the default index you want to query, if no index is provided you have to add it as a prefix of the fields in the query string
+
+=item rows
+
+is the number of documents you want to be returned in the response
+
+=back
+
+More parameters are available, just check at L<http://wiki.basho.com/Riak-Search---Querying.html#Querying-via-the-Solr-Interface>