要减肥小天鹅

文章
6
资源
0
加入时间
4年0月9天

elasticsearch问题总结增加

max virtual memory areas vm.maxmapcount [65530] is too low$ sudo sysctl -w vm.max_map_count=262144curl: (6) Could not resolve host: XGET; Name or service not known[shaoteng@iz2ze9d7x8qidhuch2m2mjz...

C++11 多线程gcc编译简单示例

1. 编辑源程序    vim hello.cpp#include #include void func(int x){ std::cout << x << " new thread\n";}int main(){ std::cout << "hello world\n"; std::thread t(func, 8); t.jo