redis的基本命令 redis的value有五种类型,每个类型有对应的方法 type key 描述这个key对应的value的类型 object encoding key 这个key对应的value操作过的类型 String: set key value 设置值 get key 获取值 set k ...
分类:
其他好文 时间:
2020-07-15 15:44:55
阅读次数:
64
1. 注意:由于iOS的限制,当应用程序在后台时,无法使用GPU。如果您的应用需要在应用程序后台运行时运行神经网络,则无法使用此库。在这种情况下,使用Core ML或TF Lite是更好的选择。或者,如果Core ML或TensorFlow不是合适的解决方案,我可以将您的模型转换为使用高度优化的CP ...
分类:
移动开发 时间:
2020-07-15 15:12:22
阅读次数:
86
创建目录mkdir [root@wzh ~]# mkdir wzh [root@wzh ~]# ll total 8 -rw . 1 root root 1430 Mar 16 22:50 anaconda-ks.cfg -rw-r--r--. 1 root root 16 Mar 18 23:30 ...
分类:
其他好文 时间:
2020-07-12 18:24:28
阅读次数:
87
场景:一台服务上搭建redis主从复制 前提:服务器上的redis是通过宝塔安装的,安装路径为/www/server/redis/ 1. cd /www/server/redis && cp redis.conf redis_6380.conf 2. vim redis_6380.conf 更改以下 ...
分类:
其他好文 时间:
2020-07-12 14:28:31
阅读次数:
73
find /etc/ -name "*.conf" | xargs tar -cpvf `date +%F`.tar && cp -a `date +%F`.tar /usr/local/src/ ...
分类:
其他好文 时间:
2020-07-11 22:51:16
阅读次数:
94
GIT基本命令 拷贝项目:git clone 创建分支:git branch 创建并进入分支:git checkeout -b 查看状态:git status 添加文件:git add 提交:git commit -m “描述” 拉取:git pull 推送:git push 查看分支:git br ...
分类:
其他好文 时间:
2020-07-11 19:17:51
阅读次数:
109
1. 非压缩 archive_command = 'cp %p /appdata/pgsql/pg_wal/%f && echo %f >> /appdata/pgsql/pg_wal/archive.list' restore_command = 'cp /appdata/pgsql/pg_wal ...
分类:
数据库 时间:
2020-07-11 10:04:36
阅读次数:
146
装了linux之后,很多人都很迷茫 下面是装了一个linux必做的几件事: 1.换源 debian系: 中国科技大学镜像网 地址: https://mirrors.ustc.edu.cn/debian/ 备份一下软件源 sudo cp /etc/apt/sources.list /etc/apt/s ...
分类:
系统相关 时间:
2020-07-10 13:35:03
阅读次数:
97
文件查看命令 cat 查看文件内容 -n # 查看文件的时候加上行号 -b # 查看文件的时候加上行号(不包括空行) -A # 每行数据的结尾加上结束符& PS: 适合查看比较小的文件 文件管理命令 cp 复制文件 -r # 递归复制 复制目录时使用的 -p # 保持源文件属性 -d # 复制的时候 ...
分类:
系统相关 时间:
2020-07-09 19:36:14
阅读次数:
112
kubectl cp 命令使用 kubectl cp --helpCopy files and directories to and from containers.Examples:# !!!Important Note!!!# Requires that the 'tar' binary is ...
分类:
其他好文 时间:
2020-07-09 15:10:45
阅读次数:
747