Skip to content

Commit

Permalink
-redis +memcached
Browse files Browse the repository at this point in the history
  • Loading branch information
commel committed Mar 24, 2024
1 parent 6fc9a5c commit c309361
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ services:
- holarse-dev

cache:
image: redis:latest
image: memcached:latest
container_name: cache
restart: always
ports:
- 6379:6379
- 11212:11212
networks:
- holarse-dev

Expand Down
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
<version>3.5.1</version>
</dependency>

<!-- <dependency>
<!-- <dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.6.0</version>
Expand Down Expand Up @@ -296,7 +296,22 @@
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>8.0.1.Final</version>
</dependency>

<!-- Caching -->
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
<version>1.1.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/net.spy/spymemcached -->
<dependency>
<groupId>net.spy</groupId>
<artifactId>spymemcached</artifactId>
<version>2.12.3</version>
</dependency>



</dependencies>

Expand Down

0 comments on commit c309361

Please sign in to comment.