{"id":123912,"date":"2025-05-02T15:05:08","date_gmt":"2025-05-02T13:05:08","guid":{"rendered":"https:\/\/prohoster.info\/blog\/novosti-interneta\/proekt-redis-vernulsya-na-ispolzovanie-otkrytoj-liczenzii-predstavlen-redis-8-0"},"modified":"2025-05-02T15:05:08","modified_gmt":"2025-05-02T13:05:08","slug":"proekt-redis-vernulsya-na-ispolzovanie-otkrytoj-liczenzii-predstavlen-redis-8-0","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/proekt-redis-vernulsya-na-ispolzovanie-otkrytoj-liczenzii-predstavlen-redis-8-0","title":{"rendered":"The Redis project has returned to using an open license. Redis 8.0 has been released.","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>Redis Ltd has announced an update to the licensing policy of the project. Starting with the release of Redis 8.0, the project's code has become available under the AGPLv3 open license. This shift to an open license was made possible by the return of Salvatore Sanfilippo, the creator of the Redis database, to the company. After leaving Redis Ltd, Salvatore developed a set of vector extensions (Vector Sets) that he was ready to contribute to Redis, but he wanted the code he created to be released under an open license. Salvatore was able to persuade his colleagues of the merits of restoring the open nature of the project and improving community engagement.    <\/p>\n<p>Rowan Trollope, the director of Redis Ltd, stated that the transition to proprietary licenses made last year achieved its goal, as AWS and Google have established a fork, begun participating in collaborative development, and sharing their past contributions. However, the change in licensing harmed the company's relationships with the community, which it is now trying to rebuild by returning to supplying the code under an open license.      <\/p>\n<p>After the transition to proprietary licenses, the development of the open codebase of Redis continued in forks such as Valkey (a fork developed with the involvement of Amazon, Google, Oracle, Ericsson, and Snap), Redict (a fork by the author of the Sway user interface and the Hare language), Garnet (a Microsoft database compatible with Redis), and KeyDB (a high-performance fork of Redis 5 by Snapchat). In the repositories for Debian 13, Ubuntu 24.10, Fedora 41, RHEL 10, Azure Linux 3, Arch Linux, and Alpine 3.20, the Redis package has been replaced with the Valkey fork.    <\/p>\n<p>Initially, Redis was offered under a permissive BSD license, which allowed modifications without disclosure. It later transitioned to proprietary licenses RSALv2 (Redis Source Available License v2) and SSPLv1 (Server Side Public License v1). Starting with Redis 8, the project code is available under the AGPLv3 license, which includes restrictions for applications that enable the operation of network services. When using AGPL components in the operation of network services, developers are required to provide users with the source code of all changes made to these components, even if the underlying software is not distributed and is used solely within internal infrastructure for service operation. The AGPLv3 license is compatible with GPLv3 but conflicts with the GPLv2 license.     <\/p>\n<p>The previous licenses, SSPL and RSAL, led to discrimination against certain categories of users, which prevented them from being considered open or free. Both licenses are similar in intent, with the difference being that the SSPL license is based on the copyleft AGPLv3 license, while the RSAL license is based on the permissive BSD license. The RSAL license allows use, modification, distribution, and integration of code into applications, except in cases where these applications are commercial or used to provide managed paid services. The SSPL license additionally requires that the same license be applied not only to the application code but also to the source texts of all components involved in providing the cloud service.       <\/p>\n<p>Simultaneously with the announcement of the license change, the release of Redis 8.0 was presented. However, despite the announcement of the release's availability, only a release candidate is currently available in the repository, and the link to download Redis 8.0 on the project's website leads to a page with a general description of the installation process. The release note also currently only mentions the release of 8.0-RC1.    <\/p>\n<p>Key changes in Redis 8.0:  <\/p>\n<ul>\n<li class=\"l\"> A new type for storing vector data sets, demanded in machine learning systems and semantic search, has been added. Vector sets expand the previously available functionality of sorted sets by allowing the storage of multidimensional vectors. To manipulate vector data, 11 new commands have been introduced, such as VADD, VREM, and VSIM.\n<li class=\"l\"> The core of Redis has been updated to include the Redis Query Engine, JSON, Time Series, and Probabilistic Data Types modules, which were previously delivered as separate Redis Stack extensions.\n<li class=\"l\"> Integrated support for a data structure in the form of JSON allows documents to be stored in JSON format linked to keys in Redis. For selective extraction of JSON documents and access to individual elements, the JSONPath query language can be used. It supports atomic updates, allowing changes to be made to individual fields of the JSON document without reloading the entire document.\n<li class=\"l\"> Support for data structures in the form of time series has been added (a record consists of time and a set of values corresponding to that time, e.g., collected through periodic polling of sensor states or metric gathering). Compression algorithms for such data have been employed to reduce memory consumption, and rules for downsampling archived data have been provided.\n<li class=\"l\"> Probabilistic data structures have been added: Bloom filter, Cuckoo filter, Count-min sketch, Top-k, and t-digest, which significantly reduce storage size when large volumes of data need to be stored while sacrificing accuracy in some operations. The \"Bloom filter\" and \"Cuckoo filter\" allow for membership testing in a set, permitting false positives for missing elements but excluding the omission of existing elements. The \"Count-min sketch\" predicts the frequency of mentions of a value within a set. The \"Top-k\" helps find the most frequently occurring values. The \"T-digest\" allows for sampling values that are greater or lesser than a specified threshold.\n<li class=\"l\"> The \"Redis Query Engine\" has been included, featuring support for vector search and capabilities for content-based sampling rather than key-based. The Redis Query Engine enables the creation of additional indexes for data stored in hashes and JSON documents.\n<li class=\"l\"> Expanded support for ACL (Access Control Lists), allowing management of data access based on keys and permitting the definition of different sets of access rules for commands with the ability to bind privilege sets to each user. For example, with ACL, it is possible to determine which users can connect to Redis, what keys a user has access to, and which commands they can execute. Redis 8 introduces new ACL categories for new data structures.\n<li class=\"l\"> New commands for hash operations have been added:\n<ul>\n<li class=\"l\"> HGETDEL \u2014 retrieve and delete hash fields by the specified key.\n<li class=\"l\"> HGETEX \u2014 retrieve hash fields by the specified key and specify their time-to-live.\n<li class=\"l\"> HSETEX \u2014 set hash fields by the specified key and specify their time-to-live.  <\/ul>\n<li class=\"l\"> More than 30 performance optimizations have been implemented, resulting in command execution speed increases of up to 87%, throughput improvements of 112%, replication speed increases of 18%, and query retrieval speed in the Redis Query Engine up to 16 times faster (due to horizontal and vertical scaling). During a set of 149 tests, 90 commands executed faster. Throughput has significantly increased due to the transition to multithreaded operation for command parsing, client request processing, and reading\/writing to network sockets. A new implementation of the multithreaded I\/O processing mechanism (io-threads) has been proposed.\n<li class=\"l\"> A new replication mechanism has been introduced, consuming 35% less memory and operating 18% faster. Two separate replication streams are employed to avoid blocks \u2014 one for transferring changes to the main node and another for transmitting changes to intermediate nodes.      <\/ul>\n<p>To manage data in the Redis DBMS, commands such as increment\/decrement, standard operations on lists and sets (union, intersection), key renaming, multiple selections, and sorting functions are provided. Two storage modes are supported: periodic data synchronization to disk and logging changes on disk. In the latter case, full preservation of all changes is guaranteed. Transactions are supported, allowing a group of commands to be executed in one step, ensuring consistency and sequence (commands from other requests cannot interfere) during the execution of the specified set of commands, and in case of issues allowing for rollback of changes.    <\/p>\n<p>Master-slave data replication can be organized for several <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/server\/\"   title=\"servers\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"1761\">servers<\/a>, operating in a non-blocking mode. A \"publish\/subscribe\" messaging mode is also available, which creates a channel from which messages are distributed to subscribing clients. All data is fully cached in memory. Client libraries are available for most popular languages, including Perl, Python, PHP, Java, Ruby, Tcl, JavaScript\/Node.js, Go, and C#.<br \/>\n<br \/>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=63175\">opennet.ru<\/a> <\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Redis Ltd \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e\u0431 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0438 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. \u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0432\u044b\u043f\u0443\u0441\u043a\u0430 Redis 8.0 \u043a\u043e\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0441\u0442\u0430\u043b \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u043f\u043e\u0434 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0435\u0439 AGPLv3. \u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043d\u0430 \u043e\u0442\u043a\u0440\u044b\u0442\u0443\u044e \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044e \u0441\u0442\u0430\u043b \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u043c \u0431\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u044e \u0432 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044e \u0421\u0430\u043b\u044c\u0432\u0430\u0434\u043e\u0440\u0430 \u0421\u0430\u043d\u0444\u0438\u043b\u0438\u043f\u043f\u043e (Salvatore Sanfilippo), \u0441\u043e\u0437\u0434\u0430\u0442\u0435\u043b\u044f \u0421\u0423\u0411\u0414 Redis. \u041f\u043e\u0441\u043b\u0435 \u0441\u0432\u043e\u0435\u0433\u043e \u0443\u0445\u043e\u0434\u0430 \u0438\u0437 Redis Ltd \u0421\u0430\u043b\u044c\u0432\u0430\u0434\u043e\u0440 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b \u043d\u0430\u0431\u043e\u0440 \u0432\u0435\u043a\u0442\u043e\u0440\u043d\u044b\u0445 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0439 (Vector Sets), \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b \u0433\u043e\u0442\u043e\u0432 [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[702],"tags":[],"class_list":["post-123912","post","type-post","status-publish","format-standard","hentry","category-news"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Redis Ltd \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e\u0431 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0438 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. \u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0432\u044b\u043f\u0443\u0441\u043a\u0430 Redis 8.0 \u043a\u043e\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0441\u0442\u0430\u043b \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u043f\u043e\u0434 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0435\u0439 AGPLv3.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/news\/proekt-redis-vernulsya-na-ispolzovanie-otkrytoj-liczenzii-predstavlen-redis-8-0\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u041f\u0440\u043e\u0435\u043a\u0442 Redis \u0432\u0435\u0440\u043d\u0443\u043b\u0441\u044f \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438. \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d Redis 8.0 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Redis Ltd \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e\u0431 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0438 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. \u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0432\u044b\u043f\u0443\u0441\u043a\u0430 Redis 8.0 \u043a\u043e\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0441\u0442\u0430\u043b \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u043f\u043e\u0434 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0435\u0439 AGPLv3.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/news\/proekt-redis-vernulsya-na-ispolzovanie-otkrytoj-liczenzii-predstavlen-redis-8-0\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2025-05-02T13:05:08+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-05-02T13:05:08+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47The Redis project has returned to using an open license. Redis 8.0 has been released | ProHoster","description":"Redis Ltd announced a change in the licensing policy of the project. Starting with the release of Redis 8.0, the project's code has become available under the free AGPLv3 license.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/proekt-redis-vernulsya-na-ispolzovanie-otkrytoj-liczenzii-predstavlen-redis-8-0","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u041f\u0440\u043e\u0435\u043a\u0442 Redis \u0432\u0435\u0440\u043d\u0443\u043b\u0441\u044f \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438. \u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d Redis 8.0 | ProHoster","og:description":"\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f Redis Ltd \u043e\u0431\u044a\u044f\u0432\u0438\u043b\u0430 \u043e\u0431 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0438 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0438 \u043f\u0440\u043e\u0435\u043a\u0442\u0430. \u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0432\u044b\u043f\u0443\u0441\u043a\u0430 Redis 8.0 \u043a\u043e\u0434 \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u0441\u0442\u0430\u043b \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u043f\u043e\u0434 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0435\u0439 AGPLv3.","og:url":"https:\/\/prohoster.info\/en\/blog\/news\/proekt-redis-vernulsya-na-ispolzovanie-otkrytoj-liczenzii-predstavlen-redis-8-0","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2025-05-02T13:05:08+00:00","article:modified_time":"2025-05-02T13:05:08+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"123912","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-02-09 17:45:58","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2026-01-23 12:37:23","updated":"2026-02-09 17:45:58","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/123912","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=123912"}],"version-history":[{"count":1,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/123912\/revisions"}],"predecessor-version":[{"id":159005,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/123912\/revisions\/159005"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=123912"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=123912"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=123912"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}