2023年6月

  • 拉取:
    docker pull xxxx:1.1
  • 查看本地镜像:
    docker images
  • 运行
    docker run

    -p 宿主端口:虚拟机端口   //端口映射

    -name name
    -e password
    -d 镜像名

特性

[XXXAtrribute(Object obj,Property1 = '1',Property2='2')]
其中若obj是构造方法,property1,property2可以是属性赋值.

*PLM
Product Lifecycle Management,产品生命周期管理
*BOM
Bill Of Materials,物料清单

  • out
    加到参数前后,能使得该参数的值可返回,类似于回调;

内存中,键值对集.

使用步骤

1.注册
记得注册为单例;
2.注入
3.使用
存:
memoryCache.Set(path,context.Result as ObjectResult);
取:
if( memoryCache.TryGetValue(Path,out object value) )
{
context.Result = value as ObjectResult;
}