上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 30 下一页
摘要: VUE - 视频流直播 推流:将直播的内容推送至服务器的过程。 拉流:指服务器已有直播内容,用指定地址进行拉取的过程。 本文主要说的是拉流。也就是客户端播放视频流。 视频流测试软件:VLC 播放器,可自行百度下载安装 网络直播中常见的三种协议:RMTP 、HTTP-FLV 、HLS RTMP 协议 阅读全文
posted @ 2022-10-23 19:46 无心々菜 阅读(948) 评论(0) 推荐(0)
摘要: NETCORE - ElasticSearch 搜索服务 相关文档地址 Elasticsearch文档:https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html Elasticsearch.Net和Nest官 阅读全文
posted @ 2022-10-08 17:01 无心々菜 阅读(404) 评论(0) 推荐(0)
摘要: Windows - 部署 Elasticsearch Elasticsearch 是一个基于 Lucene 的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于 RESTful web 接口。Elasticsearch 是用 Java 语言开发的,并作为 Apache 许可条款下的开放源码 阅读全文
posted @ 2022-09-22 14:08 无心々菜 阅读(1257) 评论(0) 推荐(0)
摘要: windows 部署 traefik 反向代理 1. 下载 traefik : https://github.com/traefik/traefik/releases 文件下载并解压后: 解压后traefik目录下包括traefik.exe文件,在该目录下建立两个文件分别为traefik.toml和 阅读全文
posted @ 2022-09-19 16:30 无心々菜 阅读(1277) 评论(0) 推荐(0)
摘要: windows 部署 nginx 一. nginx 安装部署启动 1. 下载 nginx http://nginx.org/en/download.html 选择稳定版 下载解压后 在nginx的配置文件是conf目录下的nginx.conf,默认配置的nginx监听的端口为80,如果本地电脑的80 阅读全文
posted @ 2022-09-16 15:04 无心々菜 阅读(1042) 评论(0) 推荐(0)
摘要: 微服务 - 框架流程图 阅读全文
posted @ 2022-09-05 11:01 无心々菜 阅读(122) 评论(0) 推荐(1)
摘要: VUE - install 方式插件的使用 1. 创建 VUE 项目 vue create vueplug 项目初始化结构 2. 创建 modules 文件夹,用于存放自定义插件 3. 在 modules 中创建 插件文件:Cmponent.vue <template> <div>组件</div> 阅读全文
posted @ 2022-08-23 14:19 无心々菜 阅读(390) 评论(0) 推荐(0)
摘要: mysql 之 my.ini 配置 1. max_allowed_packet 配置 在 mysqld 节点下添加,配置MySQL允许的最大数据包大小,下面的500M你可以根据你的项目修改为你自己的值,只要比要导入的备份文件大就可以了。 (未配置有可能报错:MySQL出现“Lost connecti 阅读全文
posted @ 2022-08-17 10:59 无心々菜 阅读(1184) 评论(0) 推荐(0)
摘要: VUE - DIV拖动边框调整宽度 父页面: <template> <div class="m-body" > </div> </template> <style lang="less" scoped> .m-body { position: relative; } </style> 子页面: <t 阅读全文
posted @ 2022-08-03 11:05 无心々菜 阅读(900) 评论(0) 推荐(0)
摘要: NETCORE - IHostedService定时任务的使用 项目环境,net core 3.1 + webapi 安装依赖: Microsoft.Extensions.Hosting.Abstractions 1. 在startup.cs中注册 // .Net 6 builder.Service 阅读全文
posted @ 2022-07-13 18:54 无心々菜 阅读(177) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 30 下一页