Tweaked docs

This commit is contained in:
J. Brisbin
2011-01-03 11:19:32 -06:00
parent dba242e583
commit 9b7babcf1f
2 changed files with 1 additions and 3 deletions

View File

@@ -5,6 +5,4 @@
<description>Example configuration to get you started.</description>
<bean id="conversionService" class="org.springframework.core.convert.support.GenericConversionService"/>
</beans>

View File

@@ -322,7 +322,7 @@ Future<List<?>> f = riak.submit(job); // Job runs in a separate thread
@Autowired
RiakTemplate riak;
Map<String, Object> schema = riak.getBucketSchema("mybucket");
Map<String, Object> schema = riak.getBucketSchema("mybucket", true);
List<String> keys = schema.get("keys")
for(String key : keys) {
...do something with each key...