Spring Data Key-Value

Uses of Interface
org.springframework.data.keyvalue.riak.core.KeyValueStoreOperations

Packages that use KeyValueStoreOperations
org.springframework.data.keyvalue.riak.core   
 

Uses of KeyValueStoreOperations in org.springframework.data.keyvalue.riak.core
 

Classes in org.springframework.data.keyvalue.riak.core that implement KeyValueStoreOperations
 class RiakKeyValueTemplate
          An implementation of KeyValueStoreOperations and MapReduceOperations for the Riak data store.
 

Methods in org.springframework.data.keyvalue.riak.core that return KeyValueStoreOperations
<K,V> KeyValueStoreOperations
KeyValueStoreOperations.set(K key, V value)
          Set a value at a specified key.
<K,V> KeyValueStoreOperations
RiakKeyValueTemplate.set(K key, V value)
           
<K,V> KeyValueStoreOperations
KeyValueStoreOperations.set(K key, V value, QosParameters qosParams)
          Variation on set() that allows the user to specify QosParameters.
<K,V> KeyValueStoreOperations
RiakKeyValueTemplate.set(K key, V value, QosParameters qosParams)
           
<K> KeyValueStoreOperations
KeyValueStoreOperations.setAsBytes(K key, byte[] value)
          Set a value as a byte array at a specified key.
<K> KeyValueStoreOperations
RiakKeyValueTemplate.setAsBytes(K key, byte[] value)
           
<K> KeyValueStoreOperations
KeyValueStoreOperations.setAsBytes(K key, byte[] value, QosParameters qosParams)
           
<K> KeyValueStoreOperations
RiakKeyValueTemplate.setAsBytes(K key, byte[] value, QosParameters qosParams)
           
<K,V> KeyValueStoreOperations
KeyValueStoreOperations.setIfKeyNonExistent(K key, V value)
          Set the value at the given key only if that key doesn't already exist.
<K,V> KeyValueStoreOperations
RiakKeyValueTemplate.setIfKeyNonExistent(K key, V value)
           
<K> KeyValueStoreOperations
KeyValueStoreOperations.setIfKeyNonExistentAsBytes(K key, byte[] value)
          Set the value at the given key as a byte array only if that key doesn't already exist.
<K> KeyValueStoreOperations
RiakKeyValueTemplate.setIfKeyNonExistentAsBytes(K key, byte[] value)
           
<K,V> KeyValueStoreOperations
KeyValueStoreOperations.setMultiple(Map<K,V> keysAndValues)
          Convenience method to set multiple values as Key/Value pairs.
<K,V> KeyValueStoreOperations
RiakKeyValueTemplate.setMultiple(Map<K,V> keysAndValues)
           
<K> KeyValueStoreOperations
KeyValueStoreOperations.setMultipleAsBytes(Map<K,byte[]> keysAndValues)
          Convenience method to set multiple values as Key/byte[] pairs.
<K> KeyValueStoreOperations
RiakKeyValueTemplate.setMultipleAsBytes(Map<K,byte[]> keysAndValues)
           
<K> KeyValueStoreOperations
KeyValueStoreOperations.setMultipleAsBytesIfKeysNonExistent(Map<K,byte[]> keysAndValues)
          Variation on setting multiple values as byte arrays only if the key doesn't already exist.
<K> KeyValueStoreOperations
RiakKeyValueTemplate.setMultipleAsBytesIfKeysNonExistent(Map<K,byte[]> keysAndValues)
           
<K,V> KeyValueStoreOperations
KeyValueStoreOperations.setMultipleIfKeysNonExistent(Map<K,V> keysAndValues)
          Variation on setting multiple values only if the key doesn't already exist.
<K,V> KeyValueStoreOperations
RiakKeyValueTemplate.setMultipleIfKeysNonExistent(Map<K,V> keysAndValues)
           
<K,V> KeyValueStoreOperations
KeyValueStoreOperations.setWithMetaData(K key, V value, Map<String,String> metaData)
           
<K,V> KeyValueStoreOperations
RiakKeyValueTemplate.setWithMetaData(K key, V value, Map<String,String> metaData)
           
<K,V> KeyValueStoreOperations
KeyValueStoreOperations.setWithMetaData(K key, V value, Map<String,String> metaData, QosParameters qosParams)
          Variation on setWithMetaData() that allows the user to pass QosParameters.
<K,V> KeyValueStoreOperations
RiakKeyValueTemplate.setWithMetaData(K key, V value, Map<String,String> metaData, QosParameters qosParams)
           
<B> KeyValueStoreOperations
KeyValueStoreOperations.updateBucketSchema(B bucket, Map<String,Object> props)
           
<B> KeyValueStoreOperations
RiakKeyValueTemplate.updateBucketSchema(B bucket, Map<String,Object> props)
           
 


Spring Data Key-Value

Copyright © 2010-2011 SpringSource. All Rights Reserved.