码迷,mamicode.com
首页 >  
搜索关键字:etop    ( 289个结果
手机客户端数据传输加密设计
登陆的时候进行一次双向非对称协议1.客户端先发起非对称请求2.服务端返回一次非对称响应3.在返回数据中用请求密钥及响应密钥返回在业务数据的加密中就可以使用对称密钥加密4.在业务数据请求是用请求密钥对称...
分类:移动开发   时间:2016-11-09 20:19:35    阅读次数:200
用curl发起https请求
使用curl发起https请求 使用curl如果想发起的https请求正常的话有2种做法: 方法一、设定为不验证证书和host。 在执行curl_exec()之前。设置option $ch = curl_init(); ...... curl_setopt($ch, CURLOPT_SSL_VERI ...
分类:Web程序   时间:2016-11-04 21:08:29    阅读次数:196
curl: (60) SSL certificate problem: unable to get local issuer certificate 错误
今天同事做微信管理的项目,请求接口返回如下错误SSL certificate problem: unable to get local issuer certificate。 此问题的出现是由于没有配置信任的服务器HTTPS验证。默认,cURL被设为不信任任何CAs,就是说,它不信任任何服务器验证。 ...
分类:Web程序   时间:2016-11-03 23:14:23    阅读次数:277
Brief Tour of the Standard Library
10.1. Operating System Interface The os module provides dozens of functions for interacting with the operating system: >>> >>> import os >>> os.getcwd ...
分类:其他好文   时间:2016-10-22 17:55:07    阅读次数:301
php模拟发送GET和POST请求
php分别模拟发送GET和POST请求,非常实用的额,也可作PHP CURL入门级的理解教材的,示例代码如下: 如想了解更多相关教程,可以去众行智慧看看; ...
分类:Web程序   时间:2016-10-22 17:34:41    阅读次数:203
erlang 查看进程状态,查看当前系统那些进程比较占资源
http://lfstar.blog.163.com/blog/static/56378987201341115037437/查看哪些进程占用内存最高? > spawn(fun() -> etop:start([{output, text}, {interval, 1}, {lines, 20}, ...
分类:系统相关   时间:2015-03-12 22:05:32    阅读次数:2806
erlang调试技术之etop
etop是erlang进程信息查看工具,类似于UNIX的top.一、配置参数nodeThe measured node. Value: atom() MandatorysetcookieCookie to use for the etop node - must be the ...
分类:其他好文   时间:2014-12-30 11:35:03    阅读次数:368
erlang中查找占用内存最多的进程
在erlang查看占用内存最多的进程,可以用etop,在终端输入下面语句:spawn(fun()->etop:start([{output,text},{interval,1},{lines,20},{sort,memory}])end).但etop有时会启动不起来,循环是系统比较繁忙的时候,这时可以用下面的方法:%%查找最大内存的进程 find_max_memory_..
分类:其他好文   时间:2014-08-19 16:54:25    阅读次数:191
erlang性能分析工具
erlang性能分析工具使用示例...
分类:其他好文   时间:2014-08-18 18:41:32    阅读次数:1002
289条   上一页 1 ... 27 28 29
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!