basho / riak-java-client

The Riak client for Java.
Apache License 2.0
267 stars 158 forks source link

Search with converting to POJO #707

Open lukasz-gosiewski opened 7 years ago

lukasz-gosiewski commented 7 years ago

When searching for object like this

Search search = new Search.Builder("testIndex", "date:testdate").build(); riakClient.execute(search).getAllResults();

There is no option to map response as a POJO. Will it be added in the future? Is there any best apporach of mapping it manualy?