Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/senocak/spring-kotlin-redis-cache
Spring Kotlin Redis Cache & Memcached
https://github.com/senocak/spring-kotlin-redis-cache
Last synced: about 5 hours ago
JSON representation
Spring Kotlin Redis Cache & Memcached
- Host: GitHub
- URL: https://github.com/senocak/spring-kotlin-redis-cache
- Owner: senocak
- Created: 2024-05-08T16:20:23.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-08T19:09:23.000Z (6 months ago)
- Last Synced: 2024-05-08T20:27:45.412Z (6 months ago)
- Language: Kotlin
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# SpringBoot JPA Redis Cache
## API
### Create New Category
```http request
POST http://localhost:8081/api/v1/categories
Content-Type: application/json{
"name": "{{$random.alphabetic(10)}}"
}
```### Get All Categories
```http request
GET http://localhost:8081/api/v1/categories
?next=0
&max={{$random.integer(100)}}
```### Get Category
```http request
GET http://localhost:8081/api/v1/categories/hdjxRaFNZE
```### Update Category
```http request
PATCH http://localhost:8081/api/v1/categories/hdjxRaFNZE
Content-Type: application/json{
"name": "{{$random.alphabetic(10)}}"
}
```### Delete Category
```http request
DELETE http://localhost:8081/api/v1/categories/hdjxRaFNZE
```