上一页 1 ··· 114 115 116 117 118 119 120 121 122 ··· 337 下一页
摘要: 市面上的消息队列产品有很多,比如老牌的 ActiveMQ、RabbitMQ ,目前最火的 Kafka ,还有 ZeroMQ ,去年底阿里巴巴捐赠给 Apache 的 RocketMQ ,连 redis 这样的 NoSQL 数据库也支持 MQ 功能。总之这块知名的产品就有十几种,本文讲 RabbitM 阅读全文
posted @ 2021-08-22 16:11 emanlee 阅读(96) 评论(0) 推荐(0)
摘要: I'm using visual studio 2019, and I'm faced with 3 options for when I commit my C# code. I need an explanation of the differences between each of the 阅读全文
posted @ 2021-08-22 15:05 emanlee 阅读(783) 评论(0) 推荐(0)
摘要: Redis 安装 Windows 下安装 下载地址:https://github.com/tporadowski/redis/releases。 Redis 支持 32 位和 64 位。这个需要根据你系统平台的实际情况选择,这里我们下载 Redis-x64-xxx.zip压缩包到 D:\softwa 阅读全文
posted @ 2021-08-21 19:02 emanlee 阅读(284) 评论(0) 推荐(0)
摘要: 什么是NoSQL? NoSQL,指的是非关系型的数据库。NoSQL有时也称作Not Only SQL的缩写,是对不同于传统的关系型数据库的数据库管理系统的统称。 NoSQL最常见的解释是“non-relational”, “Not Only SQL”也被很多人接受。NoSQL仅仅是一个概念,泛指非关 阅读全文
posted @ 2021-08-21 17:28 emanlee 阅读(509) 评论(0) 推荐(0)
摘要: 插值文本数据绑定最常见的形式就是使用 {{...}}(双大括号)的文本插值:文本插值 <div id="app"> <p>{{ message }}</p> </div> {{...}} 标签的内容将会被替代为对应组件实例中 message 属性的值,如果 message 属性的值发生了改变,{{. 阅读全文
posted @ 2021-08-18 22:19 emanlee 阅读(131) 评论(0) 推荐(0)
摘要: 用文本编辑器创建 index.html 文件,内容如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Vue 测试实例 </title> <script src="https://cdn.bootcdn.net/ajax/l 阅读全文
posted @ 2021-08-18 21:30 emanlee 阅读(79) 评论(0) 推荐(0)
摘要: 目录解析 目录/文件说明 build 项目构建(webpack)相关代码 config 配置目录,包括端口号等。 初学可以使用默认的。 node_modules npm 加载的项目依赖模块 src 这里是我们要开发的目录,基本上要做的事情都在这个目录里。里面包含了几个目录及文件: assets: 放 阅读全文
posted @ 2021-08-18 21:19 emanlee 阅读(366) 评论(0) 推荐(0)
摘要: E:\temp>mkdir vuetestE:\temp>cd vuetestE:\temp\vuetest>vue init webpack runoob-vue3-test Command vue init requires a global addon to be installed. Ple 阅读全文
posted @ 2021-08-18 21:18 emanlee 阅读(134) 评论(0) 推荐(0)
摘要: 打包 Vue 项目使用以下命令:E:\temp\vuetest\runoob-vue3-test>cnpm run build执行以上命令,输出结果如下: 执行完成后,会在 Vue 项目下会生成一个 dist 目录,该目录一般包含 index.html 文件及 static 目录,static 目录 阅读全文
posted @ 2021-08-18 21:18 emanlee 阅读(310) 评论(0) 推荐(0)
摘要: The nearest neighbor graph (NNG)近邻图 is a directed graph defined for a set of points in a metric space, such as the Euclidean distance in the plane. Th 阅读全文
posted @ 2021-08-17 23:31 emanlee 阅读(4896) 评论(0) 推荐(0)
上一页 1 ··· 114 115 116 117 118 119 120 121 122 ··· 337 下一页