《阿里巴巴Java开发手册v1.4.0(详尽版)》更新,新增16条设计规约-云栖社区-阿里云

         2018.6.6日更新 阿里巴巴Java开发手册v1.4.0(详尽版)发布,新增16条设计规约。设计规约是根据阿里巴巴实际项目架构经验提炼而成,主要从UML图和架构设计原则来规定比较基础的软件设计理念,并且明确了超过什么样的阈值需要以什么样的方式来呈现设计思维。 点击下载《阿里巴巴Java开发手册》v1.4.0(详尽版):编码规范考试认证:IDE插件下载:...
阅读全文

Redis为什么是单线程,高并发快的3大原因详解 - 知乎

Redis的高并发和快速原因1.redis是基于内存的,内存的读写速度非常快;2.redis是单线程的,省去了很多上下文切换线程的时间;3.redis使用多路复用技术,可以处理并发的连接。非阻塞IO 内部实现采用epoll,采用了epoll+自己实现的简单的事件框架。epoll中的读、写、关闭、连接都转化成了事件,然后利用epoll的多路复用特性,绝不在io上浪费一点时间。下面重...
阅读全文

GitHub - alibaba/dubbo-doc-static: dubbo document static contents

dubbo document static contents=================================================================Copy of .HTML files @ .Key documents link: User Guide: Developer Guide: Dubbo FAQ: ...
阅读全文

GitHub - alibaba/dubbo-spring-boot-starter: Dubbo Spring Boot Starter

=======================================================================================================================================================================================================...
阅读全文

GitHub - alibaba/spring-boot-web-support: An support project for Spring Boot Web

springbootwebsupport===================================================An support project for Spring Boot WebDependencies & CompatibilityDependenciesCompatibilityJava1.7 +Servlet3.0 ...
阅读全文

GitHub - alibaba/spring-velocity-support: An support project of legacy velocity based on Spring Framework

springvelocitysupport===================================================An support project of legacy velocity based on Spring Framework, it is a base project of , and most code is forked from Sprin...
阅读全文

GitHub - alibaba/otter: 阿里巴巴分布式数据库同步系统(解决中美异地机房)

最新更新============================================= otter已在阿里云推出商业化版本 DTS支持阿里云RDS&DRDS的Binlog日志实时订阅,现推出首月0折体验,限时限量,环境搭建 & 打包=====================================================================...
阅读全文

GitHub - alibaba/velocity-spring-boot-project: A Spring Boot Starter for velocity including Spring's official and Alibaba's implementation , e.g, Layout , Tools supports.

Velocity Spring Boot Project=============================================================A Spring Boot Starter for velocity including Spring's official and Alibaba's implementation , e.g, Layout , ...
阅读全文

(3条消息)Sublime Text 2 文档内容每行首尾添加字符串 - 八热地狱 - CSDN博客

此插件的需求来源于以下类似要求: SQL语句:```SELECT U.ID, U.NAME, U.AGE, U.SEXFROM USER_INFO UWHERE U.NAME LIKE '%XXX%'ORDER BY U.AGE```以上SQL需要在java中执行:```buf.append("SELECT ");buf.append("U.ID, U.NA...
阅读全文

CSS Hexagon Tutorial

CSS Hexagon Tutorial by James Tauber==================================== Here is a `100px` × `100px` `div` with a `30px` border:height: 100px;width: 100px;border: 30px solid 999;Watch what ...
阅读全文