Edition 0 Updated to asp. Net core 0


Using a Redis cache service running in a container



Yüklə 11,82 Mb.
Pdf görüntüsü
səhifə120/288
tarix12.07.2023
ölçüsü11,82 Mb.
#136458
1   ...   116   117   118   119   120   121   122   123   ...   288
Using a Redis cache service running in a container 
You can run Redis on a container, especially for development and testing and for proof-of-concept 
scenarios. This scenario is convenient, because you can have all your dependencies running on 
containers

not just for your local development machines, but for your testing environments in your 
CI/CD pipelines. 
However, when you run Redis in production, it is better to look for a high-availability solution like 
Redis Microsoft Azure, which runs as a PaaS (Platform as a Service). In your code, you just need to 
change your connection strings. 
Redis provides a Docker image with Redis. That image is available from Docker Hub at this URL: 
https://hub.docker.com/_/redis/
 


133 
CHAPTER 5 | Designing and Developing Multi-Container and Microservice-Based .NET Applications 
You can directly run a Docker Redis container by executing the following Docker CLI command in your 
command prompt: 
docker run --name some-redis -d redis 
The Redis image includes expose:6379 (the port used by Redis), so standard container linking will 
make it automatically available to the linked containers. 
In eShopOnContainers, the 
basket-api
microservice uses a Redis cache running as a container. That 
basketdata
container is defined as part of the multi-container 
docker-compose.yml
file, as shown in 
the following example: 
#docker-compose.yml file
#...
basketdata:
image:
redis
expose:
-
"6379"
This code in the docker-compose.yml defines a container named 
basketdata
based on the redis 
image and publishing the port 6379 internally. This configuration means that it will only be accessible 
from other containers running within the Docker host. 
Finally, in the 
docker-compose.override.yml
file, the 
basket-api
microservice for the 
eShopOnContainers sample defines the connection string to use for that Redis container: 
basket-api:
environment:
# Other data ...

Yüklə 11,82 Mb.

Dostları ilə paylaş:
1   ...   116   117   118   119   120   121   122   123   ...   288




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2024
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin