12 2017 档案

摘要:HTTP 协议有一个缺陷:通信只能由客户端发起,做不到服务器主动向客户端推送信息。 这种单向请求的特点,注定了如果服务器有连续的状态变化,客户端要获知就非常麻烦。我们只能使用"轮询":每隔一段时候,就发出一个询问,了解服务器有没有新的信息。最典型的场景就是聊天室。 轮询的效率低,非常浪费资源(因为必 阅读全文
posted @ 2017-12-31 20:23 PanPan003 阅读(209) 评论(0) 推荐(0) 编辑
摘要:In order to continue our effort of being modular and well factored we don’t just provide the entire .NET Core platform as a single NuGet package. Inst 阅读全文
posted @ 2017-12-31 20:12 PanPan003 阅读(425) 评论(0) 推荐(0) 编辑
摘要:Deployments A Deployment controller provides declarative updates for Pods and ReplicaSets. You describe a desired state in a Deployment object, and th 阅读全文
posted @ 2017-12-30 22:13 PanPan003 阅读(324) 评论(0) 推荐(0) 编辑
摘要:ReplicaSet is the next-generation Replication Controller. The only difference between a ReplicaSet and a Replication Controller right now is the selec 阅读全文
posted @ 2017-12-30 18:44 PanPan003 阅读(469) 评论(0) 推荐(0) 编辑
摘要:Kubernetes:架构、基本概念。用于总体了解 Kubernetes系列之介绍篇:优势、用途 Kubernetes核心概念总结 阅读全文
posted @ 2017-12-30 16:26 PanPan003 阅读(232) 评论(0) 推荐(0) 编辑
摘要:Init Containers This feature has exited beta in 1.6. Init Containers can be specified in the PodSpec alongside the app containers array. The beta anno 阅读全文
posted @ 2017-12-28 22:05 PanPan003 阅读(505) 评论(0) 推荐(0) 编辑
摘要:api测试 https://developers.facebook.com/tools/explorer/517735271920003?method=GET&path=act_1107316072738457%2Finsights%3F%26fields%3Dclicks%2Cimpression 阅读全文
posted @ 2017-12-27 17:02 PanPan003 阅读(1711) 评论(0) 推荐(0) 编辑
摘要:kubectl applykubectl getkubectl set image deployment/xxx -n ns echoservice=xxxkubectl deletekubectl logskubectl scale deployment nginx-deployment --re 阅读全文
posted @ 2017-12-27 14:24 PanPan003 阅读(578) 评论(0) 推荐(0) 编辑
摘要:For Client:docker exec Run a command in a running containerdocker images List imagesdocker import Import the image from a tarballdocker rm Remove one 阅读全文
posted @ 2017-12-27 14:17 PanPan003 阅读(1037) 评论(0) 推荐(0) 编辑
摘要:This page provides an overview of Pod, the smallest deployable object in the Kubernetes object model. Understanding Pods How Pods manage multiple Cont 阅读全文
posted @ 2017-12-26 22:11 PanPan003 阅读(773) 评论(0) 推荐(0) 编辑
摘要:Images You create your Docker image and push it to a registry before referring to it in a Kubernetes pod. The image property of a container supports t 阅读全文
posted @ 2017-12-26 21:21 PanPan003 阅读(832) 评论(0) 推荐(0) 编辑
摘要:Nodes Node Status Addresses Phase Condition Capacity Info Management Node Controller Self-Registration of Nodes Manual Node Administration Node capaci 阅读全文
posted @ 2017-12-24 22:10 PanPan003 阅读(928) 评论(0) 推荐(0) 编辑
摘要:This page explains how Kubernetes objects are represented in the Kubernetes API, and how you can express them in .yaml format. Understanding Kubernete 阅读全文
posted @ 2017-12-24 20:35 PanPan003 阅读(403) 评论(0) 推荐(0) 编辑
摘要:Master Components kube-apiserver etcd kube-controller-manager cloud-controller-manager kube-scheduler addons DNS Web UI (Dashboard) Container Resource 阅读全文
posted @ 2017-12-24 16:55 PanPan003 阅读(367) 评论(0) 推荐(0) 编辑
摘要:Kubernetes is an open-source platform designed to automate deploying, scaling, and operating application containers. able to quickly and efficiently r 阅读全文
posted @ 2017-12-24 16:48 PanPan003 阅读(340) 评论(0) 推荐(0) 编辑
摘要:Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructu 阅读全文
posted @ 2017-12-23 16:29 PanPan003 阅读(327) 评论(0) 推荐(0) 编辑
摘要:how to network your containers. Launch a container on the default network Docker includes support for networking containers through the use of network 阅读全文
posted @ 2017-12-23 15:42 PanPan003 阅读(1105) 评论(0) 推荐(0) 编辑
摘要:Make sure you have published the friendlyhello image you created by pushing it to a registry. We’ll be using that shared image here. Be sure your imag 阅读全文
posted @ 2017-12-23 15:09 PanPan003 阅读(403) 评论(0) 推荐(0) 编辑
摘要:Make sure you have published the friendlyhello image you created by pushing it to a registry. We’ll use that shared image here. Be sure your image wor 阅读全文
posted @ 2017-12-23 14:35 PanPan003 阅读(356) 评论(0) 推荐(0) 编辑
摘要:Make sure you have published the friendlyhello image you created by pushing it to a registry. We’ll be using that shared image here. Be sure your imag 阅读全文
posted @ 2017-12-23 13:49 PanPan003 阅读(482) 评论(0) 推荐(0) 编辑
摘要:Docker学习笔记 — Swarm搭建Docker集群 Swarm在schedule节点运行容器的时候,会根据指定的策略来计算最适合运行容器的节点,目前支持的策略有:spread, binpack, random. Random顾名思义,就是随机选择一个Node来运行容器,一般用作调试用, spr 阅读全文
posted @ 2017-12-22 21:57 PanPan003 阅读(285) 评论(0) 推荐(0) 编辑
摘要:Make sure you have published the friendlyhello image you created by pushing it to a registry. We’ll use that shared image here. Be sure your image wor 阅读全文
posted @ 2017-12-22 21:21 PanPan003 阅读(227) 评论(0) 推荐(0) 编辑
摘要:Document An image is a lightweight, stand-alone, executable package that includes everything needed to run a piece of software, including the code, a 阅读全文
posted @ 2017-12-22 20:23 PanPan003 阅读(374) 评论(0) 推荐(0) 编辑
摘要:EPPlus:网站 Supported Functions Excel Merge Operate public class ExcelMergeOperate { private static Logger _logger = LogManager.GetCurrentClassLogger(); 阅读全文
posted @ 2017-12-08 18:34 PanPan003 阅读(714) 评论(0) 推荐(0) 编辑
摘要:CsvHelper:nuget地址 csv导出类||生成类 public class CSVHeader { public string head1 { get; set; } public string head2 { get; set; } public string head3 { get; 阅读全文
posted @ 2017-12-08 18:30 PanPan003 阅读(1816) 评论(1) 推荐(1) 编辑
摘要:EPPlus :服务器不用安装其他组件 NPIO 阅读全文
posted @ 2017-12-08 10:26 PanPan003 阅读(164) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示