Skip to content

Commit 4132c2b

Browse files
1 parent 5ccb66f commit 4132c2b

File tree

22 files changed

+266
-44
lines changed

22 files changed

+266
-44
lines changed

storage_versioned_docs/version-rueidis_v1.x.x/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ type Storage interface {
6060
- [Etcd](./etcd/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+Etcd%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-etcd.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>
6161
- [Memcache](./memcache/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+Memcache%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-memcache.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>
6262
- [Memory](./memory/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+Local+Storage%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-memory.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>
63+
- [Minio](./minio/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+Minio%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-minio.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>
6364
- [MongoDB](./mongodb/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+Mongodb%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-mongodb.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>
6465
- [MSSQL](./mssql/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+MSSQL%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-mssql.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>
6566
- [MySQL](./mysql/README.md) <a href="https://github.com/gofiber/storage/actions?query=workflow%3A%22Tests+MySQL%22"> <img src="https://img.shields.io/github/actions/workflow/status/gofiber/storage/test-mysql.yml?branch=main&label=%F0%9F%A7%AA%20&style=flat&color=75C46B" /> </a>

storage_versioned_docs/version-rueidis_v1.x.x/arangodb/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ title: ArangoDB
1111

1212
A ArangoDB storage driver using `arangodb/go-driver` and [arangodb/go-driver](https://github.com/arangodb/go-driver).
1313

14+
**Note: Requires Go 1.19 and above**
15+
1416
### Table of Contents
1517
- [Signatures](#signatures)
1618
- [Installation](#installation)
@@ -35,13 +37,13 @@ go mod init github.com/<user>/<repo>
3537
```
3638
And then install the mysql implementation:
3739
```bash
38-
go get github.com/gofiber/storage/arangodb
40+
go get github.com/gofiber/storage/arangodb/v2
3941
```
4042

4143
### Examples
4244
Import the storage package.
4345
```go
44-
import "github.com/gofiber/storage/arangodb"
46+
import "github.com/gofiber/storage/arangodb/v2"
4547
```
4648

4749
You can use the following possibilities to create a storage:

storage_versioned_docs/version-rueidis_v1.x.x/azureblob/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: Azure Blob
1111

1212
[Azure Blob storage](https://azure.microsoft.com/en-us/products/storage/blobs/#overview) is Microsoft's object storage solution for the cloud.
1313

14-
> NOTE: Go **1.18** or later is required. Source: [link](https://github.com/Azure/azure-sdk-for-go/blob/main/README.md)
14+
**Note: Requires Go 1.19 and above**
1515

1616
### Table of Contents
1717

@@ -44,15 +44,15 @@ go mod init github.com/<user>/<repo>
4444
And then install the azure blob implementation:
4545

4646
```bash
47-
go get github.com/gofiber/storage/azureblob
47+
go get github.com/gofiber/storage/azureblob/v2
4848
```
4949

5050
### Examples
5151

5252
Import the storage package.
5353

5454
```go
55-
import "github.com/gofiber/storage/azureblob"
55+
import "github.com/gofiber/storage/azureblob/v2"
5656
```
5757

5858
You can use the following possibilities to create a storage:

storage_versioned_docs/version-rueidis_v1.x.x/badger/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ title: Badger
1111

1212
A fast key-value DB using [dgraph-io/badger](https://github.com/dgraph-io/badger)
1313

14+
**Note: Requires Go 1.19 and above**
15+
1416
### Table of Contents
1517

1618
- [Signatures](#signatures)
@@ -42,15 +44,15 @@ go mod init github.com/<user>/<repo>
4244
And then install the badger implementation:
4345

4446
```bash
45-
go get github.com/gofiber/storage/badger
47+
go get github.com/gofiber/storage/badger/v2
4648
```
4749

4850
### Examples
4951

5052
Import the storage package.
5153

5254
```go
53-
import "github.com/gofiber/storage/badger"
55+
import "github.com/gofiber/storage/badger/v2"
5456
```
5557

5658
You can use the following possibilities to create a storage:

storage_versioned_docs/version-rueidis_v1.x.x/bbolt/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ title: Bbolt
1111

1212
A Bbolt storage driver using [etcd-io/bbolt](https://github.com/etcd-io/bbolt). Bolt is a pure Go key/value store inspired by [Howard Chu's](https://twitter.com/hyc_symas) [LMDB project](https://www.symas.com/symas-embedded-database-lmdb). The goal of the project is to provide a simple, fast, and reliable database for projects that don't require a full database server such as Postgres or MySQL.
1313

14+
**Note: Requires Go 1.19 and above**
1415

1516
### Table of Contents
1617
- [Signatures](#signatures)
@@ -36,13 +37,13 @@ go mod init github.com/<user>/<repo>
3637
```
3738
And then install the s3 implementation:
3839
```bash
39-
go get github.com/gofiber/storage/bbolt
40+
go get github.com/gofiber/storage/bbolt/v2
4041
```
4142

4243
### Examples
4344
Import the storage package.
4445
```go
45-
import "github.com/gofiber/storage/bbolt"
46+
import "github.com/gofiber/storage/bbolt/v2"
4647
```
4748

4849
You can use the following possibilities to create a storage:

storage_versioned_docs/version-rueidis_v1.x.x/coherence/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ necessary for the client to operate correctly.
3535
To start a Coherence cluster using Docker, issue the following:
3636

3737
```bash
38-
docker run -d -p 1408:1408 ghcr.io/oracle/coherencestore-ce:22.06.5
38+
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:22.06.5
3939
```
4040

4141
See the documentation [here](https://pkg.go.dev/github.com/oracle/coherence-go-client/coherence#hdr-Obtaining_a_Session) on connection options

storage_versioned_docs/version-rueidis_v1.x.x/couchbase/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ title: Couchbase
1111

1212
A Couchbase storage driver using [couchbase/gocb](https://github.com/couchbase/gocb).
1313

14+
**Note: Requires Go 1.19 and above**
15+
1416
### Table of Contents
1517
- [Signatures](#signatures)
1618
- [Installation](#installation)
@@ -35,13 +37,13 @@ go mod init github.com/<user>/<repo>
3537
```
3638
And then install the Couchbase implementation:
3739
```bash
38-
go get github.com/gofiber/storage/couchbase
40+
go get github.com/gofiber/storage/couchbase/v2
3941
```
4042

4143
### Examples
4244
Import the storage package.
4345
```go
44-
import "github.com/gofiber/storage/couchbase"
46+
import "github.com/gofiber/storage/couchbase/v2"
4547
```
4648

4749
You can use the following possibilities to create a storage:

storage_versioned_docs/version-rueidis_v1.x.x/dynamodb/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A DynamoDB storage driver using [aws/aws-sdk-go-v2](https://github.com/aws/aws-s
1313

1414
**Note:** If config fields of credentials not given, credentials are using from the environment variables, ~/.aws/credentials, or EC2 instance role. If config fields of credentials given, credentials are using from config. Look at: [specifying credentials](https://aws.github.io/aws-sdk-go-v2/docs/configuring-sdk/#specifying-credentials)
1515

16-
....
16+
**Note: Requires Go 1.19 and above**
1717

1818
### Table of Contents
1919
- [Signatures](#signatures)
@@ -43,13 +43,13 @@ go mod init github.com/<user>/<repo>
4343
```
4444
And then install the dynamodb implementation:
4545
```bash
46-
go get github.com/gofiber/storage/dynamodb
46+
go get github.com/gofiber/storage/dynamodb/v2
4747
```
4848

4949
### Examples
5050
Import the storage package.
5151
```go
52-
import "github.com/gofiber/storage/dynamodb"
52+
import "github.com/gofiber/storage/dynamodb/v2"
5353
```
5454

5555
You can use the following possibilities to create a storage:

storage_versioned_docs/version-rueidis_v1.x.x/etcd/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ title: Etcd
1111

1212
A Etcd storage driver using [`etcd-io/etcd`](https://github.com/etcd-io/etcd).
1313

14+
**Note: Requires Go 1.19 and above**
15+
1416
### Table of Contents
1517
- [Signatures](#signatures)
1618
- [Installation](#installation)
@@ -36,13 +38,13 @@ go mod init github.com/<user>/<repo>
3638
```
3739
And then install the etcd implementation:
3840
```bash
39-
go get github.com/gofiber/storage/etcd
41+
go get github.com/gofiber/storage/etcd/v2
4042
```
4143

4244
### Examples
4345
Import the storage package.
4446
```go
45-
import "github.com/gofiber/storage/etcd"
47+
import "github.com/gofiber/storage/etcd/v2"
4648
```
4749

4850
You can use the following possibilities to create a storage:

storage_versioned_docs/version-rueidis_v1.x.x/memcache/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ title: Memcache
1111

1212
A Memcache storage driver using [`bradfitz/gomemcache`](https://github.com/bradfitz/gomemcache).
1313

14+
**Note: Requires Go 1.19 and above**
15+
1416
### Table of Contents
1517
- [Signatures](#signatures)
1618
- [Installation](#installation)
@@ -36,7 +38,7 @@ go mod init github.com/<user>/<repo>
3638
```
3739
And then install the memory implementation:
3840
```bash
39-
go get github.com/gofiber/storage/memory
41+
go get github.com/gofiber/storage/memory/v2
4042
```
4143

4244
### Examples

0 commit comments

Comments
 (0)