First, attach the link to the official download address:
https://github.com/MSOpenTech/redis/releases
Redis is a key-value storage system. Similar to Memcached, it supports a relatively large number of stored value types, including string, list, set, zset, and hash. These data types all support push/pop, add/remove, and intersection union and difference sets and richer operations, and these operations are atomic. On top of this, Redis supports sorting in a variety of ways. Like memcached, data is cached in memory for efficiency. The difference is that redis periodically writes updated data to disk or writes modification operations to the appended record file, and on this basis, master-slave synchronization is implemented. Redis is a high-performance key-value database. The emergence of redis largely compensates for the lack of keyalue storage such as memcached, and can play a good role in supplementing relational databases in some cases. It provides Java, C/C++, C#, PHP, Javascrip{filter}t, Perl, Object-C, Python, Ruby, Erlang and other clients, which are easy to use. [1] Redis supports master-slave synchronization. Data can be synchronized from the master server to any number of slaves, which can be the master server associated with other slaves. This allows Redis to perform single-level tree replication. The storage disk can write data intentionally or unintentionally. The publish/subscribe mechanism is fully implemented, so that when synchronizing the tree from anywhere from the database, it is possible to subscribe to a channel and receive the full message release history of the master server. Synchronization is helpful for scalability and data redundancy for read operations. The official website address of redis, which is very easy to remember, is redis.io. (I specifically checked, the domain name suffix io belongs to the country domain name, which is the British Indian Ocean territory, that is, the British Indian Ocean Territory) Currently, VMware is funding the development and maintenance of the redis project.
When we downloaded, we suddenly found that it couldn't be downloaded at all, was it because there were no resources? Or is the Internet speed at home not good????
Then, I waited for a while for the browser response, the download address, suddenly changed!!!
https://github-cloud.s3.amazonaws.com/releases/3402186/a748da44-9d21-11e5-906c-c9b3e388cb56.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAISTNZFOVBIJMK3TQ%2F20151228%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20151228T083854Z&X-Amz-Expires=300&X-Amz-Signature=59223962d7851ba0dca83735e3d06f1acf62e4e08dfdc0d6f107343bda426438&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B%20filename%3DRedis-x64-3.0.500.zip&response-content-type=application%2Foctet-stream
Isn't this a link to Amazon? This is, I just knew, the download address was walled, so I had to ask my friend to help me climb over the wall to download it, attach, the original file after the wall!
http://pan.baidu.com/s/1dDSLASD
|