Package org.springframework.data.redis.core

Examples of org.springframework.data.redis.core.StringRedisTemplate.opsForValue()


  public void testNullSerialization() throws Exception {
    String[] keys = new String[] { "~", "[" };
    actual.add(connection.mGet(keys));
    verifyResults(Arrays.asList(new Object[] { Arrays.asList(new String[] { null, null }) }));
    StringRedisTemplate stringTemplate = new StringRedisTemplate(connectionFactory);
    List<String> multiGet = stringTemplate.opsForValue().multiGet(Arrays.asList(keys));
    assertEquals(Arrays.asList(new String[] { null, null }), multiGet);
  }

  @Test
  public void testAppend() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.