版本配置: ES版本:6.2.4 OS内存64G。 一、参数配置: ES jvm内存31G。 vi /etc/sysctl.conf vm.swappiness = 1 elasticsearch.yml中,设置这个:bootstrap.mlockall:true 有条件使用更好的硬盘如ssd。 如 ...
分类:
其他好文 时间:
2019-04-20 21:46:42
阅读次数:
187
app('redis')->connection('default')->throttle('key000') // 每60秒,只能有10个资源被获取,在3秒内获取不到锁抛出异常 ->allow(10)->every(60)->block(3) ->then(function () { ... ...
分类:
其他好文 时间:
2019-04-17 16:38:09
阅读次数:
169
app('redis')->connection('default')->funnel('key000') // 每个资源最大锁定10秒自动过期,只有60个资源(并发),在3秒内获取不到锁抛出异常 ->releaseAfter(10)->limit(60)->block(3) ->then(func... ...
分类:
其他好文 时间:
2019-04-17 16:35:11
阅读次数:
122
The UK government's plans for regulation of the internet and social media contained a long list of online harms. Among them was excessive screen use b ...
分类:
其他好文 时间:
2019-04-17 09:19:56
阅读次数:
94
一.爬虫 二. item 3.pipeline 4.settings ...
分类:
其他好文 时间:
2019-04-17 00:08:54
阅读次数:
133
我想要一个简单的、干净的、专业的知识付费产品,如微信一般包容和多边的工具。 Let's tell people what the damn world should be. ● 周围的产品还不够好 知识付费产品不是媒体,更不是电商 很多课程制作方怀着做媒体的心,利用做电商的方式来做知识付费。结果就是 ...
分类:
其他好文 时间:
2019-04-15 00:46:20
阅读次数:
208
1027 Colors in Mars (20 分) 1027 Colors in Mars (20 分) 1027 Colors in Mars (20 分) People in Mars represent the colors in their computers in a similar w ...
分类:
其他好文 时间:
2019-04-12 19:06:59
阅读次数:
142
Given a linked list, swap every two adjacent nodes and return its head. For example,Given 1->2->3->4, you should return the list as 2->1->4->3. Your a ...
分类:
其他好文 时间:
2019-04-09 16:44:26
阅读次数:
112
1002 A+B for Polynomials (25 分) 1002 A+B for Polynomials (25 分) 1002 A+B for Polynomials (25 分) This time, you are supposed to find A+B where A and B ...
分类:
其他好文 时间:
2019-04-07 09:24:20
阅读次数:
124
一、安装模块 django-cors-headers 使用说明:https://github.com/ottoyiu/django-cors-headers 二、添加到INSTALL_APPS中 三、添加中间件 下面添加中间件的说明: CorsMiddleware should be placed ...
分类:
其他好文 时间:
2019-04-06 22:57:37
阅读次数:
178