摘要: 数据库事务: 事务逻辑上指一组操作,组成这组操作的各个单元,要不全部成功,要不全部不成功。 MySQL事务现在的默认存储引擎是InnoDB,事务隔离级别是重复读repeatable read。 重复读 repeatable read:InnoDB的默认隔离级别。可以防止任何被查询的行被其他事务更改, 阅读全文
posted @ 2020-01-03 17:42 糖醋排骨加辣椒 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 虚拟表,就是实际上并不存在(物理上不存在),但是逻辑上存在的表。 在MySQL中,存在的虚拟表:临时表、内存表和视图,派生表。 只能从select语句可以返回虚拟表的是视图和派生表。 一、派生表 当select语句的from子句中使用独立子查询时,就称其为派生表。 select column_lis 阅读全文
posted @ 2020-01-03 11:41 糖醋排骨加辣椒 阅读(12427) 评论(0) 推荐(0) 编辑
摘要: 一、linux系统安装 1.下载安装包 http://remarkableapp.github.io/linux/download.html 2.安装 sudo dpkg -i remarkable_1.87_all.deb 3.补上依赖项 sudo apt-get install -f 4.运行 阅读全文
posted @ 2019-12-12 13:45 糖醋排骨加辣椒 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 一、简介 设计模式代表了最佳实践。使用设计模式是为了重用代码、让代码更容易被他人理解、保证代码可靠性。 设计模式的类型 总共有23种设计模式,可以分为三大类:创建型模式creational patterns、结构型模式structural patterns、行为型模式behavioral patte 阅读全文
posted @ 2019-12-10 17:22 糖醋排骨加辣椒 阅读(183) 评论(0) 推荐(0) 编辑
摘要: file-->new project-->Maven-->选择Create from archetype -->选择org.scala-tools.archetypes:scala-archetype-simple-->next -->输入groupID,artifactID-->finish--> 阅读全文
posted @ 2019-12-06 09:54 糖醋排骨加辣椒 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 1.eclipse/IntelliJ IDEA 2.jadhttps://varaneckas.com/jad/ 3.jd-guihttps://jingyan.baidu.com/article/1e5468f9655b4b484961b736.htmlhttps://github.com/jav 阅读全文
posted @ 2019-12-04 11:24 糖醋排骨加辣椒 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 参考 https://blog.csdn.net/dong_alex/article/details/80813816 阅读全文
posted @ 2019-12-02 15:56 糖醋排骨加辣椒 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 1.installing git for linux sudo apt-get install git 2.configuring github: create your github account git config --gloabal user.name "user_name" git co 阅读全文
posted @ 2019-12-02 15:54 糖醋排骨加辣椒 阅读(337) 评论(0) 推荐(0) 编辑
摘要: spark streaming是基于Apache spark核心API构建的一套并发流处理库,其对实时流数据的处理具备可扩展性、高吞吐量和可容错性等特点。 spark streaming输入数据的来源既可以是kafka、flume、Twitter、zeroMQ、Kinesis等消息队列系统,也可以是 阅读全文
posted @ 2019-12-02 10:50 糖醋排骨加辣椒 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1.安装scrapy 1.5.0pip3 install Scrapy安装需要的软件pip3 install Pillow2.创建scrapy的软链接ln -s /usr/local/python3/bin/scrapy /usr/bin/scrapy 创建新项目Linux命令行输入 /root/s 阅读全文
posted @ 2019-11-29 15:47 糖醋排骨加辣椒 阅读(135) 评论(0) 推荐(0) 编辑