Redis Learning (1)

Source: Internet
Author: User
Tags configuration settings value store
Introduction to redis

Redis is an open source, BSD licensed, advancedKey-Value Store. It is often referred to asData structure serverSince keys can contain strings, hashes, lists, sets and sorted sets.

You can runAtomic operationsOn these types, like appending to a string; incrementing the value in a hash; pushing to a list; computing set intersection, union and difference; or getting the member with highest ranking in a sorted set.

In order to achieve its outstanding performance, redis works withIn-memory Dataset. Depending on your use case, You can persist it either by dumping the dataset to disk every once in a while, or by appending each command to a log.

Redis also supports trivial-to-setup master-slave replication, with very fast non-blocking First synchronization, auto-reconnection on net split and so forth.

Other features include transactions, pub/sub, Lua scripting, keys with a limited time-to-live, and configuration settings to make redis behave like a cache.

You can use redis from most programming ages out there.

Redis is written inANSI CAnd works in Most POSIX systems like Linux, * BSD, OS X without external dependencies. Linux and OSX are the two operating systems where redis is developed and more tested, and weRecommend using Linux for deploying. Redis may work in Solaris-derived systems like smartos, but the support isBest Effort. There is no official support for Windows builds, but Microsoft develops and maintains a Win32-64 experimental version of redis.

Related Article

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.