mirror of https://github.com/gofiber/fiber.git
🩹 fix the anchor tag and external references to fix the GH-generated link
parent
b6e8e7cca8
commit
180fedc0c4
|
@ -124,7 +124,7 @@ go get github.com/gofiber/fiber/v2
|
|||
- [Rapid](https://dev.to/koddr/welcome-to-fiber-an-express-js-styled-fastest-web-framework-written-with-on-golang-497) server-side programming
|
||||
- [Template engines](https://github.com/gofiber/template)
|
||||
- [WebSocket support](https://github.com/gofiber/websocket)
|
||||
- [Rate Limiter](https://docs.gofiber.io/middleware#limiter)
|
||||
- [Rate Limiter](https://docs.gofiber.io/middleware/limiter)
|
||||
- Translated in [15 languages](https://docs.gofiber.io/)
|
||||
- And much more, [explore Fiber](https://docs.gofiber.io/)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Cache
|
||||
Cache middleware for [Fiber](https://github.com/gofiber/fiber) designed to intercept responses and cache them. This middleware will cache the `Body`, `Content-Type` and `StatusCode` using the `c.Path()` as unique identifier. Special thanks to [@codemicro](github.com/codemicro/fiber-cache) for creating this middleware for Fiber core!
|
||||
Cache middleware for [Fiber](https://github.com/gofiber/fiber) designed to intercept responses and cache them. This middleware will cache the `Body`, `Content-Type` and `StatusCode` using the `c.Path()` as unique identifier. Special thanks to [@codemicro](https://github.com/codemicro/fiber-cache) for creating this middleware for Fiber core!
|
||||
|
||||
### Table of Contents
|
||||
- [Signatures](#signatures)
|
||||
|
|
|
@ -9,7 +9,7 @@ Pprof middleware for [Fiber](https://github.com/gofiber/fiber) that serves via i
|
|||
func New() fiber.Handler
|
||||
```
|
||||
|
||||
### Example
|
||||
### Examples
|
||||
Import the middleware package that is part of the Fiber web framework
|
||||
```go
|
||||
import (
|
||||
|
|
Loading…
Reference in New Issue