Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
acelaya committed Aug 23, 2024
1 parent 9c887c5 commit f97703b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]
### Added
* Add support to define redis database index in redis connection URIs.

### Changed
* *Nothing*

### Deprecated
* *Nothing*

### Removed
* *Nothing*

### Fixed
* *Nothing*


## [6.2.0] - 2024-08-11
### Added
* *Nothing*
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The last two adapters will use the namespace defined in `cache.namespace` config

The three of them will allow setting a default lifetime for those entries which do not explicitly define one, picking it up from `cache.default_lifetime`.

```php
```php
<?php

declare(strict_types=1);
Expand All @@ -52,7 +52,7 @@ return [
// These should be valid URIs. Make sure credentials are URL-encoded
'tcp://1.1.1.1:6379',
'tcp://2.2.2.2:6379',
'tcp://3.3.3.3:6379',
'tcp://3.3.3.3:6379/3', // Define a database index to use (https://redis.io/docs/commands/select/)
'tcp://user:pass%40word@4.4.4.4:6379', // Redis ACL (https://redis.io/docs/management/security/acl/)
'tcp://:password@5.5.5.5:6379', // Redis security (https://redis.io/docs/management/security/)
'tls://server_with_encryption:6379',
Expand Down

0 comments on commit f97703b

Please sign in to comment.