上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页
该文被密码保护。 阅读全文
posted @ 2021-07-01 12:18 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-07-01 12:15 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-07-01 12:05 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-07-01 12:01 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-07-01 11:58 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash n=100 while [ $n -gt 0 ]; do sleep 10s n=$((n-1)) msg=$(netstat -ant |grep -i "CLOSE_WAIT"|wc -l) msg2=$(netstat -ant |grep -i "ESTABLISHE 阅读全文
posted @ 2021-07-01 10:55 PanPan003 阅读(25) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-07-01 10:48 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-27 17:06 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-27 17:03 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-27 17:01 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 原文: https://www.jianshu.com/p/edd8db46ea99?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation 命令和查询职责分离(CQRS) 做过应用 阅读全文
posted @ 2021-06-27 11:40 PanPan003 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 原文: http://www.uml.org.cn/zjjs/201609221.asp 开始之前想先说一下微服务架构和CQRS架构的区别和联系。 微服务架构现在很热,到处可以看到各大互联网公司的微服务实践的分享总结。但是,我今天的分享和微服务没有关系,希望可以带给大家一些新的东西。 如果一定要说微 阅读全文
posted @ 2021-06-27 09:45 PanPan003 阅读(940) 评论(0) 推荐(0) 编辑
摘要: 原文:https://zhuanlan.zhihu.com/p/38968012 Event Sourcing也叫事件溯源,是这些年另一个越来越流行的概念,是大神Martin Fowler提出的一种架构模式。简单来说,它有几个特点: 整个系统以事件为驱动,所有业务都由事件驱动来完成。 事件是一等公民 阅读全文
posted @ 2021-06-27 09:33 PanPan003 阅读(170) 评论(0) 推荐(0) 编辑
摘要: # Delete all containers docker rm $(docker ps -aq) # Delete all images docker rmi $(docker images -q) # Delete all untagged images docker rmi $(docker 阅读全文
posted @ 2021-06-25 17:53 PanPan003 阅读(127) 评论(0) 推荐(0) 编辑
摘要: --Postgres Json(b) int array contains any of array values SELECT '[1, 2, 3, 4]'::jsonb @> '3'::jsonb OR '[1, 2, 3, 4]'::jsonb @> '5'::jsonb as result; 阅读全文
posted @ 2021-06-22 11:48 PanPan003 阅读(168) 评论(0) 推荐(0) 编辑
摘要: PostgreSQL 数组类型 PostgreSQL 支持表的字段使用定长或可变长度的一维或多维数组,数组的类型可以是任何数据库内建的类型、用户自定义的类型、枚举类型, 以及组合类型。但目前还不支持 domain 类型。 数组类型的定义就是通过在数组元素类型名后面附加中括号 [] 来实现的,中括号中 阅读全文
posted @ 2021-06-18 14:47 PanPan003 阅读(4457) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-10 11:45 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-09 17:31 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-09 15:25 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 添加静态页面 阅读全文
posted @ 2021-06-08 19:13 PanPan003 阅读(273) 评论(0) 推荐(0) 编辑
摘要: [ActionAuthorize] public class HomeController : Controller { private readonly ILogger<HomeController> _logger; public HomeController(ILogger<HomeContr 阅读全文
posted @ 2021-06-08 18:57 PanPan003 阅读(60) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-06-08 11:21 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 原文: https://blog.csdn.net/hekuinumberone/article/details/100877503 通过软考阶段的准备,重点是在于“软考系统架构设计师”的知识图谱进行了一次整理,并结合往年考试分数占比进行了标注,以供后期查阅和分享他人借鉴. 整体知识分布 整体结构图 阅读全文
posted @ 2021-06-07 11:11 PanPan003 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 1. merge 信息: commit 8cfc0bd578de4022553e23398d5b60afcc6f47caMerge: b1e410b41 26f2148adAuthor: ****** <*****.com>Date: Thu Jun 3 14:53:45 2021 +0800 Me 阅读全文
posted @ 2021-06-04 17:58 PanPan003 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 1. 从 doker copy 到本机: docker cp [pod-name]:/[path]/[file].log ./ kubectl cp {namespace}/{podname}:/{podpath} {localdir} kubectl cp alpha/pl****-deploym 阅读全文
posted @ 2021-06-04 17:55 PanPan003 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 1. 获取 仓库类别: http://[192.168.33.21]:5000/v2/_catalog 2.根据类别,获取tag: http://[192.168.33.21]:5000/v2/[catalog_key]/tags/list eg: https://myregistry:5000/v 阅读全文
posted @ 2021-06-04 17:54 PanPan003 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 原文:台大喊你来上课,深度学习优化,免费的哟 课程链接: https://www.csie.ntu.edu.tw/~cjlin/courses/optdl2021/ Optimization Methods for Deep Learning Slides and recordings This s 阅读全文
posted @ 2021-06-03 14:26 PanPan003 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 原文:十大经典排序算法动画与解析,看我就够了!(配代码完全版) 排序算法是《数据结构与算法》中最基本的算法之一。 排序算法可以分为内部排序和外部排序。 内部排序是数据记录在内存中进行排序。 note: how???应用??? 而外部排序是因排序的数据很大,一次不能容纳全部的排序记录,在排序过程中需要 阅读全文
posted @ 2021-05-31 22:54 PanPan003 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 原文:数据结构如何一天速成? 常用的数据结构有:数组,栈,链表,队列,树,图,堆,散列表等, 1、数组 数组是可以再内存中连续存储多个元素的结构,在内存中的分配也是连续的,数组中的元素通过数组下标进行访问,数组下标从0开始。例如下面这段代码就是将数组的第一个元素赋值为 1。 int[] data = 阅读全文
posted @ 2021-05-31 21:56 PanPan003 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 接口迁移对比:https://developers.criteo.com/marketing-solutions/docs/coming-from-papi老的接口:https://developers.criteo.com/marketing-solutions/v2020/reference/p 阅读全文
posted @ 2021-05-24 16:14 PanPan003 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 参考: https://developers.criteo.com/marketing-solutions/docs/create-your-developer-account https://developers.criteo.com/marketing-solutions/docs/create 阅读全文
posted @ 2021-05-21 11:23 PanPan003 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 参考: .NET Core 事件总线,分布式事务解决方案:CAP CAP理论 详解CAP理论 CAP定理,https://en.wikipedia.org/wiki/CAP_theorem http://www.cnblogs.com/hxsyl/p/4381980.html http://www. 阅读全文
posted @ 2021-05-20 14:11 PanPan003 阅读(753) 评论(0) 推荐(0) 编辑
摘要: 参考: Redis的6种数据类型 Redis有哪几种数据类型 Redis五种数据类型(redis使用命令) Redis 是一种基于内存的数据库,并且提供一定的持久化功能,它是一种键值(key-value)数据库,使用 key 作为索引找到当前缓存的数据,并且返回给程序调用者。 当前的 Redis 支 阅读全文
posted @ 2021-05-20 12:38 PanPan003 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 原文: 十大经典排序算法(动图演示) 0、算法概述 0.1 算法分类 十种常见排序算法可以分为两大类: 比较类排序:通过比较来决定元素间的相对次序,由于其时间复杂度不能突破O(nlogn),因此也称为非线性时间比较类排序。 非比较类排序:不通过比较来决定元素间的相对次序,它可以突破基于比较排序的时间 阅读全文
posted @ 2021-05-19 21:48 PanPan003 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 方法正确 《 方向正确 模板、框架、抽象 阅读全文
posted @ 2021-05-19 19:37 PanPan003 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 参考: Using OAuth 2.0 to Access Google APIs Obtaining OAuth 2.0 access tokens The following steps show how your application interacts with Google's OAut 阅读全文
posted @ 2021-05-19 19:29 PanPan003 阅读(539) 评论(0) 推荐(0) 编辑
摘要: 参考: OAuth2 Authentication Common Errors Make Your First API Call FAQ Best Practices Rate Limits Developer Token Reset Developer token The developer to 阅读全文
posted @ 2021-05-19 19:11 PanPan003 阅读(279) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-05-19 15:36 PanPan003 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 参考: 基于ZooKeeper的分布式锁和队列 在分布式系统中,往往需要一些分布式同步原语来做一些协同工作,上一篇文章介绍了Zookeeper的基本原理,本文介绍下基于Zookeeper的Lock和Queue的实现,主要代码都来自Zookeeper的官方recipe。 队列(Queue) 分布式队列 阅读全文
posted @ 2021-05-19 15:14 PanPan003 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 参考: 深入理解Zookeeper——大牛带你飞 不懂 ZooKeeper?没关系,这一篇给你讲的明明白白 分布式: 虽然分布式和集中式系统相比有很多优势,比如能提供更强的计算、存储能力,避免单点故障等问题。 但是由于采用分布式部署的方式,就经常会出现网络故障等问题,并且如何在分布式系统中保证数据的 阅读全文
posted @ 2021-05-19 14:23 PanPan003 阅读(152) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页
点击右上角即可分享
微信分享提示