Nginx server { listen 80; server_name xx.xxxx.com; return 301 https://$server_name$request_uri; } ...
分类:
Web程序 时间:
2020-07-20 13:15:37
阅读次数:
77
E charts 官网有很多样式可以选 https://echarts.apache.org/examples/zh/index.html#chart-type-pie 但是我发现 数据 都是以 列表 或者 字典 的形式展现 现在想要实现 : 1. 用户web端输入筛选条件 2. sql语句筛选数据 ...
分类:
数据库 时间:
2020-07-19 11:53:36
阅读次数:
109
什么是正则表达式? 一套规则,匹配字符串的 能做什么 检测一个输入的字符串是否合法 ——web开发项目 表单验证 用户输入一个内容的时候,我们要提前做检测 能够提高程序的效率并且减轻服务器的压力 从一个大文件中找到所有符合规则的内容——日志分析,爬虫 能够有效的从一大段文字中快速找到符合规则的内容 ...
分类:
其他好文 时间:
2020-07-19 00:44:23
阅读次数:
121
# coding: utf-8 import arcpy class Toolbox(object): def __init__(self): """Define the toolbox (the name of the toolbox is the name of the .pyt file)." ...
分类:
编程语言 时间:
2020-07-18 22:16:15
阅读次数:
119
5 Post和Get GET和POST有什么区别?及为什么网上的多数答案都是错的 知乎回答 get: RFC 2616 - Hypertext Transfer Protocol -- HTTP/1.1 post: RFC 2616 - Hypertext Transfer Protocol -- ...
分类:
其他好文 时间:
2020-07-18 19:47:45
阅读次数:
64
public class YieldExcemple { public static void main(String[] args) { Thread threada = new ThreadA(); Thread threadb = new ThreadB(); // 设置优先级:MIN_PRI ...
分类:
其他好文 时间:
2020-07-18 15:58:16
阅读次数:
68
#背景 今天在学习mysql时,看到一个案例,大体来说,就是客户端报Too many connections。但是,客户端的连接池,限制为了200,两个客户端java进程,那也才400,然后mysql配置了800的连接。 mysql是在my.cnf中配置了: [root@localhost CAD_ ...
分类:
数据库 时间:
2020-07-18 15:24:03
阅读次数:
103
生命太短暂,不要去做一些根本没有人想要的东西。本文已被 https://www.yourbatman.cn 收录,里面一并有Spring技术栈、MyBatis、JVM、中间件等小而美的专栏供以免费学习。关注公众号【BAT的乌托邦】逐个击破,深入掌握,拒绝浅尝辄止。 前言 各位小伙伴大家好,我是A哥。 ...
分类:
其他好文 时间:
2020-07-18 11:24:12
阅读次数:
254
MapReduce: Simplified Data Processing on Large Clusters MapReduce是什么? a programming model and an associated implementation for processing and generati ...
分类:
其他好文 时间:
2020-07-16 10:13:57
阅读次数:
73
背景 目前 机器学习平台 后端采用k8s架构进行GPU和CPU资源的调度和容器编排。总所周知,k8s的后端核心存储使用etcd进行metadata持久化存储。机器学习平台采取[External etcd topology](http://way.xiaojukeji.com/article/Exte ...
分类:
其他好文 时间:
2020-07-15 23:14:34
阅读次数:
90