Introduction to NoSQL (iii)

Source: Internet
Author: User
Tags memcached
Introduction to NoSQL (iii)

Redis Data Type-string

  • String is the simplest type, the same type as memcached, a key corresponding to a value, its supported operation is similar to the operation of memcached, it is more rich in functionality. Sets the object that can be stored in binary.
  • Example
    [[email protected] redis-4.0.8]# redis-cli 127.0.0.1:6379> set mykey "Successful"OK127.0.0.1:6379> get mykey"Successful"127.0.0.1:6379> MSET key1 1 key2 2 key3 3OK127.0.0.1:6379> MGET key1 key2 key31) "1"2) "2"3) "3"

Redi Data Type-list

  • List is a linked list structure, the main function is push, pop, get all the values of a range and so on. Key in operation is understood as the name of the linked list.
  • With the list structure, we can easily implement features such as the latest message ranking (such as the timeline of Sina Weibo). Another application of the list is Message Queuing, which can take advantage of the list's push operation to present the task in a list, and then the worker thread then pops the task out to execute it.
  • Example

Introduction to NoSQL (iii)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.