forked from redis/go-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'redis:master' into master
- Loading branch information
Showing
115 changed files
with
11,318 additions
and
4,455 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
doctests/* @dmaier-redislabs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
matrix: | ||
- name: Markdown | ||
expect_match: false | ||
apsell: | ||
lang: en | ||
d: en_US | ||
ignore-case: true | ||
dictionary: | ||
wordlists: | ||
- .github/wordlist.txt | ||
output: wordlist.dic | ||
pipeline: | ||
- pyspelling.filters.markdown: | ||
markdown_extensions: | ||
- markdown.extensions.extra: | ||
- pyspelling.filters.html: | ||
comments: false | ||
attributes: | ||
- alt | ||
ignores: | ||
- ':matches(code, pre)' | ||
- code | ||
- pre | ||
- blockquote | ||
- img | ||
sources: | ||
- 'README.md' | ||
- 'FAQ.md' | ||
- 'docs/**' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
ACLs | ||
autoload | ||
autoloader | ||
autoloading | ||
analytics | ||
Autoloading | ||
backend | ||
backends | ||
behaviour | ||
CAS | ||
ClickHouse | ||
config | ||
customizable | ||
Customizable | ||
dataset | ||
de | ||
DisableIdentity | ||
ElastiCache | ||
extensibility | ||
FPM | ||
Golang | ||
IANA | ||
keyspace | ||
keyspaces | ||
Kvrocks | ||
localhost | ||
Lua | ||
MSSQL | ||
namespace | ||
NoSQL | ||
ORM | ||
Packagist | ||
PhpRedis | ||
pipelining | ||
pluggable | ||
Predis | ||
PSR | ||
Quickstart | ||
README | ||
rebalanced | ||
rebalancing | ||
redis | ||
Redis | ||
RocksDB | ||
runtime | ||
SHA | ||
sharding | ||
SETNAME | ||
SSL | ||
struct | ||
stunnel | ||
TCP | ||
TLS | ||
uri | ||
URI | ||
url | ||
variadic | ||
RedisStack | ||
RedisGears | ||
RedisTimeseries |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: spellcheck | ||
on: | ||
pull_request: | ||
jobs: | ||
check-spelling: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Check Spelling | ||
uses: rojopolis/[email protected] | ||
with: | ||
config_path: .github/spellcheck-settings.yml | ||
task_name: Markdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: "Close stale issues" | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
|
||
permissions: {} | ||
jobs: | ||
stale: | ||
permissions: | ||
issues: write # to close stale issues (actions/stale) | ||
pull-requests: write # to close stale PRs (actions/stale) | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: 'This issue is marked stale. It will be closed in 30 days if it is not updated.' | ||
stale-pr-message: 'This pull request is marked stale. It will be closed in 30 days if it is not updated.' | ||
days-before-stale: 365 | ||
days-before-close: 30 | ||
stale-issue-label: "Stale" | ||
stale-pr-label: "Stale" | ||
operations-per-run: 10 | ||
remove-stale-when-updated: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: RE Tests | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
go-version: [1.21.x] | ||
re-build: ["7.4.2-54"] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Clone Redis EE docker repository | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: RedisLabs/redis-ee-docker | ||
path: redis-ee | ||
|
||
- name: Set up ${{ matrix.go-version }} | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
- name: Build cluster | ||
working-directory: redis-ee | ||
env: | ||
IMAGE: "redislabs/redis:${{ matrix.re-build }}" | ||
RE_USERNAME: [email protected] | ||
RE_PASS: 12345 | ||
RE_CLUSTER_NAME: re-test | ||
RE_USE_OSS_CLUSTER: false | ||
RE_DB_PORT: 6379 | ||
run: ./build.sh | ||
|
||
- name: Test | ||
env: | ||
RE_CLUSTER: "1" | ||
run: | | ||
go test \ | ||
--ginkgo.skip-file="ring_test.go" \ | ||
--ginkgo.skip-file="sentinel_test.go" \ | ||
--ginkgo.skip-file="osscluster_test.go" \ | ||
--ginkgo.skip-file="pubsub_test.go" \ | ||
--ginkgo.skip-file="gears_commands_test.go" \ | ||
--ginkgo.label-filter='!NonRedisEnterprise' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
testdata/* | ||
.idea/ | ||
.DS_Store | ||
*.tar.gz | ||
*.dic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# Contributing | ||
|
||
## Introduction | ||
|
||
We appreciate your interest in considering contributing to go-redis. | ||
Community contributions mean a lot to us. | ||
|
||
## Contributions we need | ||
|
||
You may already know how you'd like to contribute, whether it's a fix for a bug you | ||
encountered, or a new feature your team wants to use. | ||
|
||
If you don't know where to start, consider improving | ||
documentation, bug triaging, and writing tutorials are all examples of | ||
helpful contributions that mean less work for you. | ||
|
||
## Your First Contribution | ||
|
||
Unsure where to begin contributing? You can start by looking through | ||
[help-wanted | ||
issues](https://github.com/redis/go-redis/issues?q=is%3Aopen+is%3Aissue+label%3ahelp-wanted). | ||
|
||
Never contributed to open source before? Here are a couple of friendly | ||
tutorials: | ||
|
||
- <http://makeapullrequest.com/> | ||
- <http://www.firsttimersonly.com/> | ||
|
||
## Getting Started | ||
|
||
Here's how to get started with your code contribution: | ||
|
||
1. Create your own fork of go-redis | ||
2. Do the changes in your fork | ||
3. If you need a development environment, run `make test`. Note: this clones and builds the latest release of [redis](https://redis.io). You also need a redis-stack-server docker, in order to run the capabilities tests. This can be started by running: | ||
```docker run -p 6379:6379 -it redis/redis-stack-server:edge``` | ||
4. While developing, make sure the tests pass by running `make tests` | ||
5. If you like the change and think the project could use it, send a | ||
pull request | ||
|
||
To see what else is part of the automation, run `invoke -l` | ||
|
||
## Testing | ||
|
||
Call `make test` to run all tests, including linters. | ||
|
||
Continuous Integration uses these same wrappers to run all of these | ||
tests against multiple versions of python. Feel free to test your | ||
changes against all the go versions supported, as declared by the | ||
[build.yml](./.github/workflows/build.yml) file. | ||
|
||
### Troubleshooting | ||
|
||
If you get any errors when running `make test`, make sure | ||
that you are using supported versions of Docker and go. | ||
|
||
## How to Report a Bug | ||
|
||
### Security Vulnerabilities | ||
|
||
**NOTE**: If you find a security vulnerability, do NOT open an issue. | ||
Email [Redis Open Source (<[email protected]>)](mailto:[email protected]) instead. | ||
|
||
In order to determine whether you are dealing with a security issue, ask | ||
yourself these two questions: | ||
|
||
- Can I access something that's not mine, or something I shouldn't | ||
have access to? | ||
- Can I disable something for other people? | ||
|
||
If the answer to either of those two questions are *yes*, then you're | ||
probably dealing with a security issue. Note that even if you answer | ||
*no* to both questions, you may still be dealing with a security | ||
issue, so if you're unsure, just email [us](mailto:[email protected]). | ||
|
||
### Everything Else | ||
|
||
When filing an issue, make sure to answer these five questions: | ||
|
||
1. What version of go-redis are you using? | ||
2. What version of redis are you using? | ||
3. What did you do? | ||
4. What did you expect to see? | ||
5. What did you see instead? | ||
|
||
## Suggest a feature or enhancement | ||
|
||
If you'd like to contribute a new feature, make sure you check our | ||
issue list to see if someone has already proposed it. Work may already | ||
be underway on the feature you want or we may have rejected a | ||
feature like it already. | ||
|
||
If you don't see anything, open a new issue that describes the feature | ||
you would like and how it should work. | ||
|
||
## Code review process | ||
|
||
The core team regularly looks at pull requests. We will provide | ||
feedback as soon as possible. After receiving our feedback, please respond | ||
within two weeks. After that time, we may close your PR if it isn't | ||
showing any activity. |
Oops, something went wrong.