摘要:
使用ssh远程登陆 IDC机房服务器,发现老是出现如下告警信息: -bash: warning: setlocale: LC_CTYPE: cannot change locale (en_US.UTF-8): No such file or directory -bash: warning: se 阅读全文
摘要:
去除换行: sed ":a;N;s/\n//g;ta" result 去除所有空格 sed s/[[:space:]]//g result 阅读全文
摘要:
更新国内软件源 首先备份现有source.list sudo mv /etc/apt/source.list /etc/apt/source.list.original 编辑新的source.list sudo vim source.list 添加国内源。 deb http://cn.archive 阅读全文
摘要:
编写程序时无意中发现使用const修饰的map容器变量无法使用重载的[]运算符来获取相应的键值,于是编写测试用例进行验证,如下 #include <map> #include <string> #include <iostream> using namespace std; int main() { 阅读全文
摘要:
1、为什么要有parallel channel关于ParallelChannel的使用,首先需要知道parallelchannel实际是为了更好的并发编程使用brpc而提供的一套api。在之前的博客中已经提到了如何使用brpc完成同步、异步的并发操作。虽然它们能完成异步并发的操作,但是这类代码的多线 阅读全文
摘要:
地址: server:https://github.com/triton-inference-server/server client:https://github.com/triton-inference-server/client 编译部署方式: xx.yy-py3 包括server,可用于直接 阅读全文
摘要:
介绍地址:https://github.com/tensorflow/serving docker安装(推荐) https://github.com/tensorflow/serving/blob/master/tensorflow_serving/g3doc/docker.md 非docker h 阅读全文
摘要:
在一个脚本中如果想在运行时叠加启动参数可以这样写 #!/bin/bash main --port=12345 --tag=1 "$@" 这样在运行脚本时可以通过追加参数的方式传入启动命令中 参数处理说明 $# 传递到脚本的参数个数 $* 以一个单字符串显示所有向脚本传递的参数。如"$*"用「"」括起 阅读全文
摘要:
参考资料: gitHub 官方使用文档 Gflags简明教程 http://dreamrunner.org/blog/2014/03/09/gflags-jian-ming-shi-yong/ GFlags使用文档 http://www.yeolar.com/note/2014/12/14/gfla 阅读全文
摘要:
转自:https://blog.csdn.net/okiwilldoit/article/details/82755526 bthread是brpc使用的M:N线程库,目的是在提高程序的并发度的同时,降低编码难度,并在核数日益增多的CPU上提供更好的scalability和cache localit 阅读全文