摘要:
内置json模块对于Python内置类型序列化的描述 """Extensible JSON <http://json.org> encoder for Python data structures. Supports the following objects and types by defaul 阅读全文
摘要:
文中代码基于Python3.7 对于Python中的多继承情况,运行时在搜索对象的属性或方法时,需要遵循一定的顺序规则,这个规则称为:Method Resolution Order (MRO). MRO规则可以总结为以下三句话: In the multiple inheritance scenari 阅读全文
摘要:
import module 使用from <module> import *导入模块时,若显式定义了__all__,则只导入__all__中的name,否则会导入除以下划线开头的所有name 文件目录结构 | main.py| module.py 定义module文件: # __all__ in a 阅读全文
摘要:
本文使用特性来描述接口而不是xml文件,使用特性可自定义接口在swaggerUI上的描述 安装nuget包:Swashbuckle.AspNetCore.SwaggerUI和Swashbuckle.AspNetCore.Annotations,配置swagger: using Microsoft.A 阅读全文
摘要:
/// <summary> /// 自定义泛型可迭代类型 /// </summary> /// <example> /// This code shows how to build a instance of <see cref="SelfEnumerable"/>: /// <code> /// 阅读全文
摘要:
本文服务器基于centos7,客户端Windows10。文中讲述了FTP和SSH两个协议的基本配置和使用: FTP SSH FTP FTP(File Transfer Protocol),文件传输协议,是一个比较古老的基于TCP,用于不同计算机间传递文件的协议。 安装 # 判断是否安装过ftp服务或 阅读全文
摘要:
Unicode简介 单机此处查看原文。Unicode provides a unique number for every character, no matter what the platform, program, or language is. Fundamentally, computer 阅读全文
摘要:
最近发布了@types/node-observer包到npm,这里记录下发布过程 TS类型文件的包名通常以@types开头,使用npm publish发布以@types开头的包时需要使用付费账号。 我们无需自己注册付费账号,可以将自己的代码merge到开源项目DefinitelyTyped中,然后发 阅读全文
摘要:
Python文档中有一段话: Remember that arguments are passed by assignment in Python. Since assignment just creates references to objects, there’s no alias betwe 阅读全文
摘要:
公司系统中有一接口访问量大,内部计算逻辑较为复杂。在优化时打算把Request中的参数做为Key,Response做为Value放到进程内缓存中,以降低服务器压力,提高接口响应速度。因为Response中一些数据时效性要求较高,所以缓存设置一个较短的过期时间(比如10s)。 但这里牵涉到一个问题,如 阅读全文