Seanforfun
Let's try one more time.
-
Backend | Redis| integrateion to Spring
Redis is a kind of NoSQL(Not only sql), which means redis is not a relation based database. Redis works on RAM so we always setup a redis server (not in the EE project) as a first level or second level database. In this post, I will include the five data structure that can be saved in Redis.
-
Backend | Redis| Data structure in Redis
Redis is a kind of NoSQL(Not only sql), which means redis is not a relation based database. Redis works on RAM so we always setup a redis server (not in the EE project) as a first level or second level database. In this post, I will include the five data structure that can be saved in Redis.
-
Data structure | TreeSet
Treeset is a navigable set which also guaranteed the unique of the elements in the tree set. The implementation of Treeset is based on TreeMap and we can inject a comparator to the tree set so we can have have the elements in the set saved in order.