深入Redis服务器启动过程 1. 服务器状态结构的初始化 首先,创建一个struct redisServer 类型的实例变量 server 作为服务器的状态。 其次,调用redis.c/ initServerConfig 函数来初始化 server 变量。 ? initServerConfig 函 ...
分类:
其他好文 时间:
2020-03-30 16:17:36
阅读次数:
65
题目描述 Given an input string (s) and a pattern (p), implement regular expression matching with support for '.' and '*'. '.' Matches any single character ...
分类:
其他好文 时间:
2020-03-30 12:48:40
阅读次数:
69
本文章转发自:https://www.cnblogs.com/tianqing/p/12570801.html 使用HttpContext的具体场景: 1. 在Controller层访问HttpContext 2. 在中间件中使用HttpContext 3. 在数据访问层使用HttpContext ...
分类:
Web程序 时间:
2020-03-30 12:42:33
阅读次数:
93
假如有这么一个数据网关服务服务,客户端有三种账号角色(普通用户、管理员用户、超级管理员用户),数据网关针对这三种角色用户分配不同的数据访问权限,那怎么样通过IdentityServer4 来实现角色的授权呢?它又是怎样的一个过程? ...
分类:
Web程序 时间:
2020-03-30 09:56:21
阅读次数:
85
HTTP协议简介: HTTP(Hypertext Transfer Protocol ),超文本传输协议。它主要运用于应用层。是一个简单的请求——响应协议。通常,由HTTP客户端发起一个请求,创建一个到服务器指定端口(默认是80端口)的TCP连接。HTTP服务器则在那个端口监听客户端的请求。一旦收到 ...
分类:
Web程序 时间:
2020-03-29 19:30:59
阅读次数:
88
源自:ITU-T.Y3800标准文案 Variations for forming QKDN and user network (This appendix does not form an integral part of this Recommendation.) There are vario ...
分类:
Web程序 时间:
2020-03-29 11:00:52
阅读次数:
88
Changes in MySQL 5.6.30 (2016-04-11, General Availability) Security Notes The linked OpenSSL library for the MySQL Commercial Server has been updated ...
分类:
数据库 时间:
2020-03-29 10:57:48
阅读次数:
103
电商 市场 2013:79万笔/分钟 2014:13.4万亿,双11支付宝交易峰值285万笔/分钟 2015:50万亿 技术特点 一个Tomcat:500并发 分布式:上万并发 高并发、集群、负载均衡、高可用(冗余) 海量数据 业务复杂 系统安全:记录日志 架构 Lamp:linux apache ...
分类:
其他好文 时间:
2020-03-29 10:25:47
阅读次数:
73
1、创建django项目 $ django-admin startproject DailyFresh 2、进入项目目录 $ cd DailyFresh 3、启动项目 $ python manage.py runserver Watching for file changes with StatRe ...
分类:
其他好文 时间:
2020-03-28 21:35:42
阅读次数:
100
https://zhuanlan.zhihu.com/p/53498914 Flutter中的单例以及网络请求库的封装 ClassNotFound 程序员 25 人赞同了该文章 Why?为什么需要单例 在Android中我们经常使用OkHttp来进行网络请求,但我们并不希望每次都创建一个OkHttp ...
分类:
其他好文 时间:
2020-03-28 19:59:52
阅读次数:
163