Package org.springframework.data.keyvalue.redis.support.collections

Examples of org.springframework.data.keyvalue.redis.support.collections.RedisList


    DefaultRedisMap mapJS = new DefaultRedisMap("bound:key:map", templateJS);

    DefaultRedisSet setJS = new DefaultRedisSet("bound:key:set", templateJS);

    RedisList list = new DefaultRedisList("bound:key:list", templateJS);

    return Arrays.asList(new Object[][] {
        { new RedisAtomicInteger("bound:key:int", jedisConnFactory), sof, templateJS },
        { new RedisAtomicLong("bound:key:long", jedisConnFactory), sof, templateJS },
        { list, sof, templateJS }, { setJS, sof, templateJS }, { mapJS, sof, templateJS } });
View Full Code Here

TOP

Related Classes of org.springframework.data.keyvalue.redis.support.collections.RedisList

Copyright © 2018 www.massapicom. 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.