大约有 2,000 项符合查询结果(耗时:0.0087秒) [XML]

https://www.tsingfun.com/it/tech/1058.html 

通过FastCGI Cache实现服务降级 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...q.set_uri(ngx.var.uri, true) '; } } 补充:Nginx的商业支持里提供了删除缓存的功能,但社区版里没有包含此功能,好在逻辑简单,你可以自己实现,当然也可以使用第三方模块,比如 nginx_cache_purge。 当系统正常时,运行于...
https://www.tsingfun.com/it/cp... 

Linux C/C++程序常用的调试手段及异常排查总结 - C/C++ - 清泛网 - 专注C/C++及内核技术

...、调试、性能调优的大本营。你想想编译服务器(Linux)上支持的 20 个线程,同时编译你的程序,那速度简直快到飞起,像我们使用 NDK 到自己的 windows 系统下编译,整份代码编完需要 10 分钟以上,Linux 下直接ndk-build -j20,2~3 分钟...
https://bbs.tsingfun.com/thread-1527-1-1.html 

Error 908: Permission RECEIVE_SMS has been denied. - App Inventor 2 中...

...https://bbs.tsingfun.com/thread-1833-1-1.html 必须真机,模拟器不支持,在手机设置中开启短信相关权限。
https://www.tsingfun.com/it/cpp/905.html 

可重入函数、不可重入函数及线程安全 - C/C++ - 清泛网 - 专注C/C++及内核技术

...影响的情况,这种情况的出现需要某些机制比如互斥锁来支持,使之安全。 reentrance thread-safe 可重入 不可重入 函数
https://www.fun123.cn/reference/iot/bytearray.html 

ByteArray 扩展 - 字节数组处理工具 · App Inventor 2 中文网

...ByteArray扩展为App Inventor提供了强大的字节数组处理功能,支持各种字节数据操作和转换。 下载和安装 扩展下载 ByteArray扩展: UrsAI2ByteArray.zip 示例项目: ByteArrayTest.aia 功能概述 ...
https://www.tsingfun.com/it/bigdata_ai/1075.html 

记一次MongoDB性能问题 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...用新服务器前先看看相关日志,了解一下基本情况,当我浏览MongoDB日志时,发现一些警告信息: WARNING: You are running on a NUMA machine. We suggest launching mongod like this to avoid performance problems: numactl –interleave=all mongod [other options] 当...
https://www.tsingfun.com/it/cpp/1871.html 

Boost.Asio的简单使用(Timer,Thread,Io_service类) - C/C++ - 清泛网 - 专注C/C++及内核技术

...在前一个回调函数完成后开始,当然回调函数仍然可以和那些不使用boost::asio::strand分配,或是使用另一个boost::asio::strand分配的回调函数一起并发执行. printer(boost::asio::io_service& io) : strand_(io), timer1_(io, boost::posix_time::secon...
https://www.tsingfun.com/ilife/tech/585.html 

80后夫妻创业,如今身价68亿,怎么做到? - 资讯 - 清泛网 - 专注C/C++及内核技术

...,便进入了我们的网络监测范围,因此我们可以根据用户浏览的信息内容,为用户推介资讯。”王麒诚还举例说,智慧城市应用在医疗方面,我们的一卡通系统最终目标是要替代现行的市民卡,可以成为市民的电子健康档案,人...
https://www.tsingfun.com/it/tech/1069.html 

Nginx与Lua - 更多技术 - 清泛网 - 专注C/C++及内核技术

...的代码加入到Nginx的配置文件nginx.conf,并重启Nginx,然后浏览,就能看到效果了。 location /lua { set $test "hello, world."; content_by_lua ' ngx.header.content_type = "text/plain"; ngx.say(ngx.var.test); '; } 在深入学习ngx_lua之...
https://www.tsingfun.com/it/cpp/1876.html 

STL中map容器使用自定义key类型报错详解 - C/C++ - 清泛网 - 专注C/C++及内核技术

...了。 结论 因此,通过重载<操作符可以使自定义结构支持map容器。 另外的一种方法 下面介绍另一种方法,通过重写比较类函数来: template<class T> class Compare { public: int operator()(const T& x, const T& y)const { ...