一、安装gitlab-runner 1.可以是linux也可以是docker的 2.本文说的是docker安装部署的。
二、直接上.gitlab-ci.yml
stages: # List of stages for jobs, and their order of execution
- build-image
build-image-job:
stage: build-image
image: harbor.com:543/docke…
Redis基础
Redis是一个基于内存的key-value结构数据库。
基于内存存储,读写性能高适合存储热点数据(热点商品、资讯、新闻)企业应用广泛
1、Redis入门
1.1、Redis简介
The open source, in-memory data store used by millions of developers as a …