Example usage for org.springframework.data.redis.core ScanOptions NONE

List of usage examples for org.springframework.data.redis.core ScanOptions NONE

Introduction

In this page you can find the example usage for org.springframework.data.redis.core ScanOptions NONE.

Prototype

ScanOptions NONE

To view the source code for org.springframework.data.redis.core ScanOptions NONE.

Click Source Link

Document

Constant to apply default ScanOptions without setting a limit or matching a pattern.

Usage

From source file:lab.home.mvn_tomcat_spring_redis_rest_api.Value.java

public Iterator getAll() {
    return template.opsForSet().scan("0", ScanOptions.NONE);
}