Giter Site home page Giter Site logo

spring-projects / spring-data-redis Goto Github PK

View Code? Open in Web Editor NEW
1.7K 148.0 1.1K 26.26 MB

Provides support to increase developer productivity in Java when using Redis, a key-value store. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.

Home Page: https://spring.io/projects/spring-data-redis/

License: Apache License 2.0

Makefile 0.10% Java 97.55% Lua 0.01% Dockerfile 0.02% Kotlin 2.31% Shell 0.01%
java redis ddd spring spring-data framework

spring-data-redis's Introduction

Spring Data Redis Spring Data Redis

Spring Data Redis icon?job=spring data redis%2Fmain&subject=Build Gitter Revved up by Develocity

The primary goal of the Spring Data project is to make it easier to build Spring-powered applications that use new data access technologies such as non-relational databases, map-reduce frameworks, and cloud based data services.

This modules provides integration with the Redis store.

Features

  • Connection package as low-level abstraction across multiple Redis drivers (Lettuce and Jedis).

  • Exception translation to Spring’s portable Data Access exception hierarchy for Redis driver exceptions

  • RedisTemplate that provides a high level abstraction for performing various Redis operations, exception translation and serialization support.

  • Pubsub support (such as a MessageListenerContainer for message-driven POJOs).

  • Redis Sentinel and Redis Cluster support.

  • Reactive API using the Lettuce driver.

  • JDK, String, JSON and Spring Object/XML mapping serializers.

  • JDK Collection implementations on top of Redis.

  • Atomic counter support classes.

  • Sorting and Pipelining functionality.

  • Dedicated support for SORT, SORT/GET pattern and returned bulk values.

  • Redis implementation for Spring 3.1 cache abstraction.

  • Automatic implementation of Repository interfaces including support for custom finder methods using @EnableRedisRepositories.

  • CDI support for repositories.

Code of Conduct

This project is governed by the Spring Code of Conduct. By participating, you are expected to uphold this code of conduct. Please report unacceptable behavior to [email protected].

Getting Started

Here is a quick teaser of an application using Spring Data Redis in Java:

public class Example {

    // inject the actual template
    @Autowired
    private RedisTemplate<String, String> template;

    // inject the template as ListOperations
    // can also inject as Value, Set, ZSet, and HashOperations
    @Resource(name="redisTemplate")
    private ListOperations<String, String> listOps;

    public void addLink(String userId, URL url) {
        listOps.leftPush(userId, url.toExternalForm());
        // or use template directly
        redisTemplate.boundListOps(userId).leftPush(url.toExternalForm());
    }
}

@Configuration
class ApplicationConfig {

  @Bean
  public RedisConnectionFactory redisConnectionFactory() {
    return new LettuceConnectionFactory();
  }
}

Maven configuration

Add the Maven dependency:

<dependency>
  <groupId>org.springframework.data</groupId>
  <artifactId>spring-data-redis</artifactId>
  <version>${version}</version>
</dependency>

If you’d rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare the appropriate dependency version.

<dependency>
  <groupId>org.springframework.data</groupId>
  <artifactId>spring-data-redis</artifactId>
  <version>${version}-SNAPSHOT</version>
</dependency>

<repository>
  <id>spring-snapshot</id>
  <name>Spring Snapshot Repository</name>
  <url>https://repo.spring.io/snapshot</url>
</repository>

Getting Help

Having trouble with Spring Data? We’d love to help!

Reporting Issues

Spring Data uses Github as issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below:

  • Before you log a bug, please search the issue tracker to see if someone has already reported the problem.

  • If the issue does not already exist, create a new issue.

  • Please provide as much information as possible with the issue report, we like to know the version of Spring Data that you are using, the JVM version, Stacktrace, etc.

  • If you need to paste code, or include a stack trace use Markdown code fences ```.

  • If possible try to create a test-case or project that replicates the issue. Attach a link to your code or a compressed file containing your code.

Building from Source

You don’t need to build from source to use Spring Data (binaries in repo.spring.io), but if you want to try out the latest and greatest, Spring Data can be easily built with the maven wrapper. You also need JDK 17 or above and make. The local build environment is managed within a Makefile to download, build and spin up Redis in various configurations (Standalone, Sentinel, Cluster, etc.)

 $ make test

The preceding command runs a full build. You can use make start, make stop, and make clean commands to control the environment yourself. This is useful if you want to avoid constant server restarts. Once all Redis instances have been started, you can either run tests in your IDE or the full Maven build:

 $ ./mvnw clean install

If you want to build with the regular mvn command, you will need Maven v3.8.0 or above.

Also see CONTRIBUTING.adoc if you wish to submit pull requests, and in particular please sign the Contributor’s Agreement before your first non-trivial change.

Building reference documentation

Building the documentation builds also the project without running tests.

 $ ./mvnw clean install -Pantora

The generated documentation is available from target/antora/site/index.html.

Guides

The spring.io site contains several guides that show how to use Spring Data step-by-step:

Examples

License

Spring Data Redis is Open Source software released under the Apache 2.0 license.

spring-data-redis's People

Contributors

anshlykov avatar bergerst avatar chang-chao avatar christophstrobl avatar dengliming avatar erichaagdev avatar gkorland avatar gregturn avatar imba-tjd avatar jbrisbin avatar jdeppe-pivotal avatar jencompgeek avatar junghoon-vans avatar jxblum avatar kezhuw avatar liujiong1982 avatar mp911de avatar nsdiv avatar odrotbohm avatar oudb avatar quaff avatar schauder avatar sdeleuze avatar spring-builds avatar sxhinzvc avatar systemoutprint avatar tsachev avatar vikasgarghb avatar wilkinsona avatar wqlm avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

spring-data-redis's Issues

Add a method that provides a "pipelined connection" context [DATAREDIS-38]

Lasse opened DATAREDIS-38 and commented

We have usage pattern for Redis for which I have not foudn direct support through SDKV, which I would love to have if it makes sense. What we do is that to optimize connection usage we open a pipelined connection for the current thread so that all redis operations (using the same ConnectionFactory) will use that connection.

Below is the code I have created for that pattern, using a plain Runnable as callback interface.

Now I wonder if that is okay to do (it seems to work) and if that pattern could somehow be integrated into SDKV.

 
    private List<Object> executeWithPipelinedConnection(final Runnable code) {
        List<Object> result = Collections.emptyList();

        RedisConnection conn = RedisConnectionUtils.bindConnection(_connectionFactory);
        try {
            conn.openPipeline();
            try {
                code.run();
            } finally {
                result = conn.closePipeline();
            }
        } finally {
            RedisConnectionUtils.unbindConnection(_connectionFactory);
        }

        return result;
    }

Affects: 1.0.0.M3

HashOperations not being autowired [DATAREDIS-8]

Andrew Berman opened DATAREDIS-8 and commented

The documentation states that if you inject the RedisTemplate it should automatically convert to the proper operation. It doesn't do it for HashOperations. If that is by design due to the added key in the hash then the documentation should be updated


Affects: 1.0.0.M3

Referenced from: commits a6f79e2

Allow database indizes > 16 [DATAREDIS-16]

Lasse opened DATAREDIS-16 and commented

DATAKV-40 brought support for database index selection to the connection factories.

Unfortunately, JedisConnectionFactory/JredisConnectionFactory.setDatabase() limit the index range to 0..15, and while this is the default configuration if redis server, one may (we actually do!) configure redis with more databases (or less).

Please remove the upper bound, SELECT will report an error anyways if the database index is not valid.


Affects: 1.0.0.M3

Referenced from: commits spring-projects/spring-data-keyvalue@94e4509

Improve JacksonHashMapper to avoid suppressing unchecked warnings [DATAREDIS-57]

Andrew Berman opened DATAREDIS-57 and commented

Need to upgrade to Jackson 1.7 I believe to do this, however, it should clean things up a bit and it gives you a LocaleSerializer which 1.6 does not have. I believe that 1.7 is backwards compatible too.

You can change JacksonHashMapper to:

public class JacksonHashMapper<T> ... {
...

public JacksonHashMapper<T>() {

}

public JacksonHashMapper<T>(ObjectMapper mapper) {
this.mapper = mapper;
}

@Override
public T fromHash(Map<String, Object> hash) {
return mapper.convertValue(hash, TypeFactory.type(new TypeReference<T>(){}));
}

@Override
public Map<String, Object> toHash(T object) {
return mapper.convertValue(object, TypeFactory.mapType(Map.class, String.class, Object.class));
}
}


Affects: 1.0.0.M3

lenient behaviour for null values [DATAREDIS-46]

Costin Leau opened DATAREDIS-46 and commented

Storing null values (especially inside maps) causes some confusing error messages for the user (as the problem tends to be caught at the protcol level).
The template or the connection can mitigate this risk by replacing the values with empty arrays however since that changes the object context, most likely such behaviour needs to be configurable


Affects: 1.0.0.M1

DefaultSortParameters "builder" methods should return DefaultSortParameters to be usefull [DATAREDIS-45]

Johannes Alkjær opened DATAREDIS-45 and commented

The DefaultSortParameters "builder like methods"

public SortParameters order(Order order) {
public SortParameters alpha() {
public SortParameters numeric() {
public SortParameters get(byte[] pattern) {
public SortParameters by(byte[] pattern) {
public SortParameters limit(long start, long count) {

are not very builder like since they don't return DefaultSortParameters and hence you cant really chain the calls without a lot of typecasts

Two additional builder methods would also be nice:

public DefaultSortParameters desc() {
    setOrder(Order.DESC);
    return this;
}
public DefaultSortParameters asc() {
    setOrder(Order.ASC);
    return this;
}

So a sort could look something like

redisTemplate.sort("mykey", new DefaultSortParameters().limit(0,100).alpha().desc() )

Affects: 1.0.0.M2

add support for RJC client [DATAREDIS-31]

Connections obtained from pool are never returned [DATAREDIS-1]

Jonathan Ruckwood opened DATAREDIS-1 and commented

I have found that whilst using connection pooling the connections are never returned back to the pool. I'm not sure if you are aware of this or if it is just a feature which is incomplete at this early stage. If it is, please disregard this issue.

Here is my spring configuration:

    <context:component-scan base-package="net.foo.bar"/>

    <bean id="jedisConnectionFactory"
          class="org.springframework.data.keyvalue.redis.connection.jedis.JedisConnectionFactory">
        <property name="pooling" value="true"/>
    </bean>

    <bean id="stringRedisTemplate" class="org.springframework.data.keyvalue.redis.core.StringRedisTemplate">
        <property name="connectionFactory" ref="jedisConnectionFactory"/>
    </bean>

I discovered this after noticing my webapp would lock up after 8 (Redis) get operations, after a bit of digging I found out that this number corresponded with the default size of the JedisPool created within JedisConnectionFactory.afterPropertiesSet().

Further digging revealed that whilst a resource is obtained from the pool, the resource is never returned (via a call to JedisPool.returnResource(...)) . This is causing the pool to become exhausted and 'deadlock' ensues. Internally Jedis is using the GenericObjectPool from Apache Commons, reading the documentation for this class shows the condition I am experiencing:

When whenExhaustedAction is WHEN_EXHAUSTED_BLOCK, borrowObject() will block (invoke Object.wait() until a new or idle object is available. If a positive maxWait value is supplied, the borrowObject() will block for at most that many milliseconds, after which a NoSuchElementException will be thrown. If maxWait is non-positive, the borrowObject() method will block indefinitely.

I have verified that this problem can be solved by returning connections to be pool by using 1.0.0.M2-SNAPSHOT and 'hacking' in a call to JedisPool.returnResource(...) in the RedisConnectionUtils.releaseConnection(...). I have attached this patch, however it is not a fix and only serves to demonstrate.

I have found that once my webapp uses the patched 1.0.0.M2-SNAPSHOT I no longer experience this problem.

I am happy to provide further information, if required (or provide a more formal patch?).


Affects: 1.0.0.M1, 1.0.0.M2

Attachments:

Referenced from: commits spring-projects/spring-data-keyvalue@b248bd2

1 votes, 2 watchers

Add "key operation" methods to KeyBound and *Operations interfaces [DATAREDIS-48]

Lasse opened DATAREDIS-48 and commented

It would be nice if the following key operations from RedisCommand are also available in the KeyBound interface (operating on the bound key) and in the ValueOperations/HashOperations/ListOperations/SetOperations/ValueOperations/ZSetOperations interfaces (with key as argument, probably introduce a new interface here):

del, exists, expire, expireAt, persist, ttl, type

This would make the code more fluent to write


Affects: 1.0.0.M2

Sub-tasks:

  • DATAREDIS-67 make rename/renameIfAbsent lenient when the key does not exist

improve subscription pubsub [DATAREDIS-58]

Costin Leau opened DATAREDIS-58 and commented

The current subscription implementations allow the subscription to be used after it was closed. This should be fixed. In addition the channel/pattern raw content needs to be wrapped to be properly compared when used in a collection


Affects: 1.0.0.M2

Deserialization is not null safe [DATAREDIS-5]

Costin Leau opened DATAREDIS-5 and commented

Initially reported on github by ddelautre

There are 2 problems:

  1. If there are null values in a collection returned by RedisConnection, these values are removed from the result when we deserialize them.
    For example if we do:
    hmget key field1 field2 field3 and there's no value for field2.
    RedisConnection will return {a, null, c} but RedisTemplate (after deserialization) will return {a, c}.
    It is not correct because we don't know which field is null.

  2. If RedisConnection return a null collection (for example when we are in a pipeline or in a transaction), there is a NullPointerException in the deserialize method.


Affects: 1.0.0.M2

Referenced from: commits spring-projects/spring-data-keyvalue@e684301, spring-projects/spring-data-keyvalue@6d2ada3, spring-projects/spring-data-keyvalue@503f949

1 votes, 1 watchers

Change argument and return type of ValueOperations.multiGet to List [DATAREDIS-39]

Lasse opened DATAREDIS-39 and commented

At the moment, ValueOperations.multiGet() receives and returns a Collection.

I think it makes much more sense to use Lists, because only if one specifies a well-ordered list of keys and receives a well-ordered list of values, does this method make sense.

This is only a small change since the underlying RedisStringCommands.mGet() already uses Array/List.


Affects: 1.0.0.M3

Referenced from: commits spring-projects/spring-data-keyvalue@8bb5f42

not reconnect redis server [DATAREDIS-14]

Peng Yong opened DATAREDIS-14 and commented

if i restart redis server, spring data can't reconnect to redis server:

An Error has occurred in this application. org.springframework.dao.InvalidDataAccessApiUsageException: java.net.SocketException: Broken pipe; nested exception is redis.clients.jedis.JedisException: java.net.SocketException: Broken pipe at org.springframework.data.keyvalue.redis.connection.jedis.JedisUtils.convertJedisAccessException(JedisUtils.java:66) at org.springframework.data.keyvalue.redis.connection.jedis.JedisConnection.convertJedisAccessException(JedisConnection.java:82) at org.springframework.data.keyvalue.redis.connection.jedis.JedisConnection.hGet(JedisConnection.java:1483) at org.springframework.data.keyvalue.redis.core.RedisTemplate$DefaultHashOperations$1.doInRedis(RedisTemplate.java:1592) at org.springframework.data.keyvalue.redis.core.RedisTemplate$DefaultHashOperations$1.doInRedis(RedisTemplate.java:1589) at org.springframework.data.keyvalue.redis.core.RedisTemplate.execute(RedisTemplate.java:138) at org.springframework.data.keyvalue.redis.core.RedisTemplate.execute(RedisTemplate.java:115) at org.springframework.data.keyvalue.redis.core.RedisTemplate$DefaultHashOperations.get(RedisTemplate.java:1589) at com.juyide.dao.impl.UserDaoImpl.select(UserDaoImpl.java:27) at com.juyide.dao.impl.UserDaoImpl.select(UserDaoImpl.java:11) at com.juyide.service.impl.UserServiceImpl.getUser(UserServiceImpl.java:74) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:616) at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:309) at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150) at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) at $Proxy20.getUser(Unknown Source) at com.juyide.web.controller.HomeController.home(HomeController.java:53) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:616) at org.springframework.web.bind.annotation.support.HandlerMethodInvoker.invokeHandlerMethod(HandlerMethodInvoker.java:176) at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.invokeHandlerMethod(AnnotationMethodHandlerAdapter.java:426) at org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.handle(AnnotationMethodHandlerAdapter.java:414) at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:790) at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:719) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:549) at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:77) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:88) at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:76) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) at java.lang.Thread.run(Thread.java:636) Caused by: redis.clients.jedis.JedisException: java.net.SocketException: Broken pipe at redis.clients.jedis.Protocol.sendCommand(Protocol.java:47) at redis.clients.jedis.Protocol.sendCommand(Protocol.java:26) at redis.clients.jedis.Connection.sendCommand(Connection.java:70) at redis.clients.jedis.BinaryClient.hget(BinaryClient.java:172) at redis.clients.jedis.BinaryJedis.hget(BinaryJedis.java:695) at org.springframework.data.keyvalue.redis.connection.jedis.JedisConnection.hGet(JedisConnection.java:1481) ... 53 more Caused by: java.net.SocketException: Broken pipe at java.net.SocketOutputStream.socketWrite0(Native Method) at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:109) at java.net.SocketOutputStream.write(SocketOutputStream.java:153) at redis.clients.util.RedisOutputStream.flushBuffer(RedisOutputStream.java:29) at redis.clients.util.RedisOutputStream.flush(RedisOutputStream.java:227) at redis.clients.jedis.Protocol.sendCommand(Protocol.java:45) ... 58 more


Affects: 1.0.0.M2

RedisAtomicLong to perform operation getAndIncrement [DATAREDIS-11]

Sugar Backberg opened DATAREDIS-11 and commented

RedisAtomicLong a = new RedisAtomicInteger("a:a", this.jedisConnectionFactory, 0);
jedisConnectionFactory is @Autowired. When performing this: a.getAndIncrement(), I got error saying "redis.clients.jedis.exceptions.JedisDataException: ERR value is not an integer or out of range".
If I perform like this:
JedisConnection con = this.jedisConnectionFactory.getConnection();
con.incr("a:a".getBytes());
There were no errors. I just checked source but got nothing. I'm confusing now. Maybe it's CASUtils's fault.
And in RedisAtomicLong.class:
public RedisAtomicLong(String redisCounter, RedisOperations<String, Long> operations, long initialValue) {
this.key = redisCounter;
this.operations = operations.opsForValue();
this.operations.set(redisCounter, initialValue);
}
I think maybe it's better to add this.generalOps = operations; otherwise this.generalOps is null, if we perform getAndIncrement() just right after using this constructor to instantiate an object, we get a nullException Error


Affects: 1.0.0.M2

Reference URL: http://forum.springsource.org/showthread.php?p=349810#post349810

Referenced from: commits spring-projects/spring-data-keyvalue@f3dfe2e, spring-projects/spring-data-keyvalue@5f1c94c, spring-projects/spring-data-keyvalue@146257b, spring-projects/spring-data-keyvalue@29fa021

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.