上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 65 下一页
  2022年6月4日
摘要: redis简单应用demo1.字符串127.0.0.1:6379> set hello toneyOK127.0.0.1:6379> type hellostring127.0.0.1:6379> get hello"toney" 2.Hash哈希表HashMap<key,HashMap<>>127 阅读全文
posted @ 2022-06-04 09:35 oktokeep 阅读(115) 评论(0) 推荐(0)
摘要: 1.下载安装包wget https://download.redis.io/releases/redis-6.2.7.tar.gz2.解压缩tar -zvxf redis-6.2.7.tar.gz 3.修改文件名称mv redis-6.2.7 redis 4.cd到/usr/local/redis目 阅读全文
posted @ 2022-06-04 09:35 oktokeep 阅读(141) 评论(0) 推荐(0)
  2022年6月3日
摘要: 1.nginx /conf/nginx.conf配置文件 #user nobody; worker_processes auto; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.l 阅读全文
posted @ 2022-06-03 18:21 oktokeep 阅读(118) 评论(0) 推荐(0)
摘要: 安装依赖,安装前准备yum install gccyum install pcre-develyum install zlib zlib-develyum install openssl openssl-devel 下载解压安装包//创建一个文件夹cd /usr/localmkdir nginxcd 阅读全文
posted @ 2022-06-03 18:13 oktokeep 阅读(58) 评论(0) 推荐(0)
摘要: 下载安装地址:https://nodejs.org/en/download/ 查询安装系统:[root@VM-4-3-centos /]# unameLinux[root@VM-4-3-centos /]# uname -mx86_64[root@VM-4-3-centos /]# 下载压缩包,ht 阅读全文
posted @ 2022-06-03 18:12 oktokeep 阅读(96) 评论(0) 推荐(0)
摘要: [root@VM-4-3-centos /]# lsof -i:8881COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAMEnode 15526 root 18u IPv6 2162203 0t0 TCP *:galaxy4d (LISTEN) [ro 阅读全文
posted @ 2022-06-03 18:05 oktokeep 阅读(217) 评论(0) 推荐(0)
  2022年6月2日
摘要: import com.mongodb.client.MongoClient; import com.mongodb.client.MongoClients; import com.mongodb.client.MongoCollection; import com.mongodb.client.Mo 阅读全文
posted @ 2022-06-02 11:55 oktokeep 阅读(51) 评论(1) 推荐(0)
摘要: import com.mongodb.client.*; import com.mongodb.client.model.Filters; import org.bson.Document; import java.util.ArrayList; import java.util.List; pub 阅读全文
posted @ 2022-06-02 11:54 oktokeep 阅读(114) 评论(0) 推荐(0)
摘要: import com.mongodb.client.*; import com.mongodb.client.MongoClient; import com.mongodb.client.model.Filters; import com.mongodb.client.result.DeleteRe 阅读全文
posted @ 2022-06-02 11:54 oktokeep 阅读(87) 评论(1) 推荐(0)
摘要: import com.mongodb.client.MongoClient; import com.mongodb.client.MongoClients; import com.mongodb.client.MongoDatabase; public class MyMongodbConnTest 阅读全文
posted @ 2022-06-02 11:53 oktokeep 阅读(147) 评论(1) 推荐(0)
上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 65 下一页