码迷,mamicode.com
首页 >  
搜索关键字:implemet stack    ( 9692个结果
浅尝 Elastic Stack (五) Logstash + Beats + Kafka
在 Elasticsearch、Kibana、Beats 安装 中讲到推荐架构: 本文基于 Logstash + Beats 读取 Spring Boot 日志 将其改为上述架构 如果没有安装 Kafka 需要首先安装:http://kafka.apache.org/quickstart ,如果需要 ...
分类:其他好文   时间:2020-06-05 13:04:50    阅读次数:48
浅尝 Elastic Stack (四) Logstash + Beats 读取 Spring Boot 日志
一、Spring Boot 日志配置 采用 Spring Boot 默认的 Logback: <?xml version="1.0" encoding="UTF-8"?> <configuration scan="true" scanPeriod="10 seconds"> <contextName ...
分类:编程语言   时间:2020-06-04 21:47:36    阅读次数:83
Java 序列化
Java 提供了一种对象序列化的机制,该机制中,一个对象可以被表示为一个字节序列,该字节序列包括该对象的数据、有关对象的类型的信息和存储在对象中数据的类型。 将序列化对象写入文件之后,可以从文件中读取出来,并且对它进行反序列化,也就是说,对象的类型信息、对象的数据,还有对象中的数据类型可以用来在内存 ...
分类:编程语言   时间:2020-06-04 16:53:19    阅读次数:66
Elasticsearch中的映射方式—简洁版教程
我的Elasticsearch系列文章,逐渐更新中,欢迎关注0A.关于Elasticsearch及实例应用00.Solr与ElasticSearch对比01.ElasticSearch能做什么?02.Elastic Stack功能介绍03.如何安装与设置Elasticsearch API04.如果通 ...
分类:其他好文   时间:2020-06-04 01:31:00    阅读次数:61
luogu P1841 [JSOI2007]重要的城市 dp+Floyd
#include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #include<stack> # ...
分类:Web程序   时间:2020-06-04 01:22:05    阅读次数:66
luogu P2034 选择数字 单调队列优化dp 脑残行为,导致wa了很多遍
#include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #include<stack> # ...
分类:其他好文   时间:2020-06-03 13:50:13    阅读次数:37
Java-数据库连接池
1.概念 其实就是一个容器(集合),存放数据库连接的容器 当系统初始化好后,容器被创建,容器会申请一些连接对象,当用户来访问数据库时,从容器中获取连接对象,用户访问完之后,会将连接对象归还给容器。 好处:节约资源,用户访问高效 2.实现: 2.1 标准接口:DataSource javax.aql包 ...
分类:数据库   时间:2020-06-03 09:17:26    阅读次数:92
当Elasticsearch进行文档索引时,它是怎样工作的?
我的Elasticsearch系列文章,逐渐更新中,欢迎关注0A.关于Elasticsearch及实例应用00.Solr与ElasticSearch对比01.ElasticSearch能做什么?02.Elastic Stack功能介绍03.如何安装与设置Elasticsearch API04.如果通 ...
分类:其他好文   时间:2020-06-03 00:56:08    阅读次数:271
深度学习入门比赛——街景字符识别(五)
这是比赛的最后一个阶段,模型的集成融合 在传统的机器学习中,模型集成融合有stack,投票等方式,在深度学习中,竟然也可以使用模型集成融合,这让我学到了很多,下面就将这些方法进行一下罗列记录,方便日后思考学习: ###方法一:Droupout droupout经常用作防止模型拟合来使用,但是由于其对 ...
分类:其他好文   时间:2020-06-03 00:49:28    阅读次数:53
PAT.1057 Stack(线段树)
1057 Stack (30分) Stack is one of the most fundamental data structures, which is based on the principle of Last In First Out (LIFO). The basic operatio ...
分类:其他好文   时间:2020-06-03 00:45:45    阅读次数:80
9692条   上一页 1 ... 45 46 47 48 49 ... 970 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!