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

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

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

... shell> ldd /path/to/nginx libluajit-<VERSION>.so => not found 此类问题通常使用ldconfig命令就能解决: shell> echo "/usr/local/lib" > /etc/ld.so.conf.d/usr_local_lib.conf shell> ldconfig 再试着启动Nginx看看,应该就OK了。 应用 我们先用一个简单的程序...
https://stackoverflow.com/ques... 

How to execute shell command in Javascript

...Except for one thing. You'll get the error "child is not a function". The call to exec() executes the command - no need to call child(). Unfortunately, the callback isn't called whenever the child process has something to output - it is called only when the child process exits. Sometimes that's OK a...
https://stackoverflow.com/ques... 

How can I put a database under git (version control)?

... and version control that instead. This way it is a flat text file. Personally I suggest that you keep both a data dump, and a schema dump. This way using diff it becomes fairly easy to see what changed in the schema from revision to revision. If you are making big changes, you should have a secon...
https://www.tsingfun.com/ilife/idea/676.html 

“hello, world” 起源及其他 - 创意 - 清泛网 - 专注C/C++及内核技术

...章(我的hello world)、环境搭建成功后的第一个测试… 问题的提出 相传古时候有个退休的程序员,在家闲来无事,决定修习书法之道。第一日,备好笔墨纸砚,便挥毫写下一行大字:“hello, world”。 学过编程语言的人都笑了...
https://www.tsingfun.com/it/cpp/2205.html 

c/c++ volatile和mutable关键字 - C/C++ - 清泛网 - 专注C/C++及内核技术

...automatic variables) 3) 多线程应用中被几个任务共享的变量 问题: 1)一个参数既可以是const还可以是volatile吗?解释为什么。 2); 一个指针可以是volatile 吗?解释为什么。 3); 下面的函数有什么错误: int square(volatile int *ptr) { ...
https://www.tsingfun.com/ilife/tech/485.html 

WhatsApp比微信好在哪里? - 资讯 - 清泛网 - 专注C/C++及内核技术

...免费”,而“增值服务”收费,但是这种商业模式带来的问题是,一个越来越庞大臃肿的应用,一个越来越脱离其核心功能的应用。 总结 可见,WhatsApp成功的一大因素就是“专注”,坚持其工具属性,因为是付费应用,因此就...
https://www.tsingfun.com/it/tech/1386.html 

Mac OS X Git安装教程 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...不是很熟悉命令行,可以使用之前的方法安装。如果没有问题,开始吧。 下载并解压 Git 源代码: $ curl -O http://kernel.org/pub/software/scm/git/git-1.7.5.tar.bz2 $ tar xzvf git-1.7.5 打开目录,编译 Git: $ cd git-1.7.5 $ ./configure --...
https://www.tsingfun.com/it/cp... 

Linux C++程序内存占用过高的原因分析 - C/C++ - 清泛网 - 专注C/C++及内核技术

... jemalloc,接替系统的内存分配函数,可极大消除内存碎片问题。 valgrind 内存泄漏 jemalloc
https://www.tsingfun.com/it/cp... 

【解决】asan runtime does not come first in initial library list - C/C...

... 注:加-fsanitize=address编译选项可以检查出更详细的内存问题,不加也能编译通过也能执行检查。 参考:https://stackoverflow.com/questions/59853730/asan-issue-with-asan-library-loading 2021/8/5 添加2、3节。 asan 内存跟踪
https://www.tsingfun.com/it/cp... 

定位C++程序CPU占用率高的步骤及技巧(全网最干,没有之一) - C/C++ - 清...

...位到具体的代码行。(持续更新,欢迎讨论补充,有任何问题或需要指导的欢迎扫描页面右侧二维码添加微信好友)1、top查看哪个进程占用高 2、top -H 查看哪个线程高 3、gstack 查看该线程的堆栈 0