上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 45 下一页

2020年3月14日

MongoDB---常用函数

摘要: 1、limit() 读取 指定数量 的数据记录; limit()方法接受一个数字参数,该参数指定从MongoDB中读取的记录条数; 语法:db.COLLECTION_NAME.find().limit(NUMBER) ; 2、skip() 跳过 指定数量 的数据; skip方法同样接受一个数字参数作 阅读全文

posted @ 2020-03-14 21:48 anpeiyong 阅读(817) 评论(0) 推荐(0) 编辑

2020年3月11日

Mysql---docker部署主从同步

摘要: 1、docker下载MySQL镜像 2、进入容器,创建data、config目录 3、创建配置文件 4、启动主库 docker run --restart=always --name mysql-3306 -v /mysql-3306/config/mysql-3306.cnf:/etc/my.cn 阅读全文

posted @ 2020-03-11 13:09 anpeiyong 阅读(182) 评论(0) 推荐(0) 编辑

2020年3月4日

Java SE---Collection

摘要: a,迭代器 Iterable b,Collection 1、List package com.an.collection; import java.util.ArrayList; import java.util.Iterator; import java.util.List; /** * @des 阅读全文

posted @ 2020-03-04 09:53 anpeiyong 阅读(341) 评论(0) 推荐(0) 编辑

JavaSE---遍历

摘要: 1、for 2、foreach 3、Iterator 阅读全文

posted @ 2020-03-04 08:52 anpeiyong 阅读(67) 评论(0) 推荐(0) 编辑

JDK1.7---下载路径

摘要: https://www.oracle.com/java/technologies/javase/javase7-archive-downloads.html 阅读全文

posted @ 2020-03-04 08:39 anpeiyong 阅读(138) 评论(0) 推荐(0) 编辑

2020年3月3日

Java8---Consumer

摘要: 概述 /** * Represents an operation that accepts a single input argument and returns no * result. Unlike most other functional interfaces, {@code Consume 阅读全文

posted @ 2020-03-03 16:25 anpeiyong 阅读(466) 评论(0) 推荐(0) 编辑

2020年2月27日

MongoDB---索引

摘要: http://www.mongoing.com/eshu_explain1 http://www.mongoing.com/eshu_explain2 http://www.mongoing.com/eshu_explain3 阅读全文

posted @ 2020-02-27 12:24 anpeiyong 阅读(347) 评论(0) 推荐(0) 编辑

2020年2月19日

EmEditor

摘要: 【注册码】 姓 名:ttrar.com 序 列 号:DKAZQ-R9TYP-5SM2A-9Z8KD-3E2RK 阅读全文

posted @ 2020-02-19 16:51 anpeiyong 阅读(152) 评论(0) 推荐(0) 编辑

2020年1月21日

《亿级流量网站架构核心技术》---高并发

摘要: 1、应用级缓存 1.1、缓存简介: 让数据 更 接近 使用者; 目的 让访问速度更快; 工作机制:从缓存读取数据,如果没有,再从慢速设备读取实际数据 并 同步到缓存; eg:CPU读取数据:CPU >L1/L2/L3 >内存 >磁盘; maven: 本地仓 >中央仓 >远程仓; 1.2、缓存命中率: 阅读全文

posted @ 2020-01-21 10:16 anpeiyong 阅读(278) 评论(0) 推荐(0) 编辑

2020年1月16日

JavaSE---异常---扩展

摘要: 1、循环中异常使用 package com.an.exception; /** * @description: * @author: anpeiyong * @date: Created in 2020/1/16 10:18 * @since: */ public class ForExceptio 阅读全文

posted @ 2020-01-16 15:58 anpeiyong 阅读(140) 评论(0) 推荐(0) 编辑

上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 45 下一页

导航