Package org.springframework.data.redis.connection

Examples of org.springframework.data.redis.connection.DataType


    }

    Assert.hasText(key, "Collection key is required - no key or bean name specified");
    Assert.notNull(template, "Redis template is required");

    DataType dt = template.type(key);

    // can't create store
    Assert.isTrue(!DataType.STRING.equals(dt), "Cannot create store on keys of type 'string'");

    store = createStore(dt);
View Full Code Here

TOP

Related Classes of org.springframework.data.redis.connection.DataType

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.