Skip to content

Commit 24cb0f3

Browse files
Merge pull request #2693 from redis/LRC-271
Changes in the context of the Redis license change
2 parents 7dbeb33 + 69921f5 commit 24cb0f3

File tree

6 files changed

+37
-217
lines changed

6 files changed

+37
-217
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Redis documentation
22

3+
OPEN SOURCE LICENSE VS. TRADEMARKS. The three-clause BSD license gives you the right to redistribute and use the software in source and binary forms, with or without modification, under certain conditions. However, open source licenses like the three-clause BSD license do not address trademarks. For further details please read the [Redis Trademark Policy](https://www.redis.com/legal/trademark-policy)."
4+
35
## Clients
46

57
All clients are listed under language specific sub-folders of [clients](./clients)

community/_index.md

Lines changed: 6 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Community
33
linkTitle: Community
44
---
55

6-
Since 2009, the Redis open source project has inspired an enthusiastic and active community of users and contributors. We continue to be committed to fostering an open, welcoming, diverse, inclusive, and healthy community.
6+
Since 2009, the Redis project has inspired an enthusiastic and active community of users and contributors. We continue to be committed to fostering an open, welcoming, diverse, inclusive, and healthy community.
77

88
## Code of Conduct
99

@@ -29,29 +29,15 @@ For occasional updates on the new Redis releases, you can either [subscribe to t
2929

3030
To keep up with the latest from Redis Inc., including news on Redis Cloud and Redis Stack, consider [following the Redis Twitter feed](https://twitter.com/redisinc).
3131

32-
## Project governance
33-
34-
Redis has adopted a [light governance model](/docs/about/governance) led by individuals who have made significant contributions to Redis and demonstrated a long-term commitment to the project.
35-
36-
Learn more about the project's governance and the Redis Core Team on the [Redis governance page](/docs/about/governance).
37-
38-
## Conferences and meetups
39-
40-
Redis regularly sponsors conferences and meetups. Recent conferences include:
41-
42-
* [Redis Days 2022](https://redis.com/redisdays/)
43-
44-
* [RedisConf 2021](https://redis.com/redisconf/)
45-
46-
* [RedisConf 2020](https://www.youtube.com/c/Redisinc/playlists?view=50&sort=dd&shelf_id=4)
47-
4832
## Contributing to Redis
4933

50-
There are many ways to contribute to Redis, starting with documentation all the way to changes to the open source Redis server. Here are a few ways you can get involved.
34+
> Future releases of Redis will be dual-licensed under a source-available license. You can choose between the [Redis Source Available License 2.0 (RSALv2)](/docs/about/license) or the Server Side Public License v1 (SSPLv1).
35+
36+
There are many ways to contribute to Redis, starting with documentation all the way to changes to the Redis server. Here are a few ways you can get involved.
5137

5238
### Contributing to docs
5339

54-
The [Redis docs](https://github.com/redis/redis-doc) are open source, and we'd love to incorporate your contributions. For small changes and typos, we recommend creating a pull request against [redis-doc repo](https://github.com/redis/redis-doc/pulls).
40+
We welcome contributions to the [Redis docs](https://github.com/redis/redis-doc). For small changes and typos, we recommend creating a pull request against [redis-doc repo](https://github.com/redis/redis-doc/pulls).
5541

5642
### Reporting bugs
5743

@@ -61,8 +47,4 @@ For larger doc changes, we ask that you first create an issue describing your pr
6147

6248
### Client libraries
6349

64-
The Redis client libraries are nearly always open source and accepting of contributions. Consult the contribution guidelines for the library you're interested in.
65-
66-
### Hacktoberfest
67-
68-
Redis is participating in [Hacktoberfest 2022](/community/hacktoberfest/).
50+
The Redis client libraries are nearly always open source and accepting of contributions. Consult the contribution guidelines for the library you're interested in.

docs/about/_index.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22
title: Introduction to Redis
33
linkTitle: "About"
44
weight: 10
5-
description: Learn about the Redis open source project
5+
description: Learn about Redis
66
aliases:
77
- /topics/introduction
88
- /buzz
99
---
1010

11-
Redis is an open source (BSD licensed), in-memory __data structure store__ used as a database, cache, message broker, and streaming engine. Redis provides [data structures](/docs/data-types/) such as
12-
[strings](/docs/data-types/strings/), [hashes](/docs/data-types/hashes/), [lists](/docs/data-types/lists/), [sets](/docs/data-types/sets/), [sorted sets](/docs/data-types/sorted-sets/) with range queries, [bitmaps](/docs/data-types/bitmaps/), [hyperloglogs](/docs/data-types/hyperloglogs/), [geospatial indexes](/docs/data-types/geospatial/), and [streams](/docs/data-types/streams/). Redis has built-in [replication](/topics/replication), [Lua scripting](/commands/eval), [LRU eviction](/docs/reference/eviction/), [transactions](/topics/transactions), and different levels of [on-disk persistence](/topics/persistence), and provides high availability via [Redis Sentinel](/topics/sentinel) and automatic partitioning with [Redis Cluster](/topics/cluster-tutorial).
11+
Redis is an open source (BSD licensed), in-memory __data structure store__ used as a database, cache, message broker, and streaming engine.
12+
13+
> Future releases of Redis will be dual-licensed under a source-available license. You can choose between the [Redis Source Available License 2.0 (RSALv2)](/docs/about/license) or the Server Side Public License v1 (SSPLv1).
14+
15+
Redis provides [data structures](/docs/data-types/) such as [strings](/docs/data-types/strings/), [hashes](/docs/data-types/hashes/), [lists](/docs/data-types/lists/), [sets](/docs/data-types/sets/), [sorted sets](/docs/data-types/sorted-sets/) with range queries, [bitmaps](/docs/data-types/bitmaps/), [hyperloglogs](/docs/data-types/hyperloglogs/), [geospatial indexes](/docs/data-types/geospatial/), and [streams](/docs/data-types/streams/). Redis has built-in [replication](/topics/replication), [Lua scripting](/commands/eval), [LRU eviction](/docs/reference/eviction/), [transactions](/topics/transactions), and different levels of [on-disk persistence](/topics/persistence), and provides high availability via [Redis Sentinel](/topics/sentinel) and automatic partitioning with [Redis Cluster](/topics/cluster-tutorial).
1316

1417
You can run __atomic operations__
1518
on these types, like [appending to a string](/commands/append);
@@ -40,4 +43,4 @@ Redis is written in **ANSI C** and works on most POSIX systems like Linux,
4043
\*BSD, and Mac OS X, without external dependencies. Linux and OS X are the two operating systems where Redis is developed and tested the most, and we **recommend using Linux for deployment**. Redis may work in Solaris-derived systems like SmartOS, but support is *best effort*.
4144
There is no official support for Windows builds.
4245

43-
<hr>
46+
<hr>

docs/about/governance.md

Lines changed: 0 additions & 91 deletions
This file was deleted.

0 commit comments

Comments
 (0)