github上一些觉得对自己工作有用的项目收集

jopen 9年前

usefullProjectCollect

github上一些觉得对自己工作有用的项目收集

技能类

全文检索

nosql

  • mapdb 支持亿级别map, list, 支持事务. 可考虑做为缓存使用

  • Chronicle-Queue Micro second messaging that stores everything to disk http://openhft.net/products/chronicle-queue/

  • Chronicle-Engine A high performance, low latency, reactive processing framework

  • Chronicle-Logger A sub microsecond java logger, supporting standard logging APIs such as Slf & Log4Jhttp://openhft.net/products/chronicle-logger/

  • Chronicle-Map Replicate your Key Value Store across your network, with consistency, durability and performance.

  • Koloboke Java Collections till the last breadcrumb of memory and performance

  • zero-allocation-hashing provides the API for hashing any sequences of bytes in Java, including all kinds of primitive arrays, buffers, CharSequences and more. The key design goal, distinguishing this project from, for example, Guava hashing: this API ease implementing hashing algorithms which don't do a single allocation during hash computation for any input, and without using ThreadLocal

前端js类

nodejs类

javaweb框架类

  • play1 颠覆javaee的概念写的一个全栈式的web框架. 里面的很多概念可以借鉴

  • play2 scala的web框架, 更加擅长于编写长连接推送型并发量大的web应用, 可以说是现在的手机web类的应用.

  • ninjaframework Ninja is a full stack web framework for Java. Rock solid, fast and super productive. 完全使用java来编写,maven构建,从play上借鉴了很多的东西.

  • generator-jhipster Hipster stack for Java developers. Yeoman + Maven + Spring + AngularJS in one handy generator. 网站

Our goal is to generate for you a complete and modern Web app, unifying

  1. A high-performance and robust Java stack on the server side with Spring Boot
  2. A sleek, modern, mobile-first front-end with AngularJS and Bootstrap
  3. A powerful workflow to build your application with Yeoman, Bower, Grunt and Maven

orm

  • ebean 是我理想中的orm框架,支持半生对象,bean对象转json.感觉作者是从一线开发人员, 跟hibernate相比少了很多高大尚的理念. 使用maven,ant在编译进行字节码增强. 其字节码增强这块很值得学习. 这边要去注意一下java的命令行参数 -javaagent

  • avaje-metric ebean作者的另外一个项目, 也是使用字节码增强加入性能监测代码

java

  • boon 提供日常java开发的工具类,如json,并发消息处理. 及提供一些语法上的便利

  • guava 提供java集合,并发操作一些常用的工具类及数据结构,要是开发java程序,请一定要使用它, 跟上面的 boon 有些重合

  • vert.x The scalable polyglot application platform for the JVM. java上的nodejs, 支持多语言编写模块.引入eventbus,使用单线程简化并发开发

  • atmoshpere Realtime Client Server Framework for the JVM, supporting WebSockets and Cross-Browser Fallbacks Support. websocket的支持,及在浏览器不支持websocket时,退化到别的方式支持. 如commet,long-pull等, 无需改服务端代码

  • nettosphere A Java WebSocket/HTTP server based on the Atmosphere and Netty Framework

  • Vibe 网站 atmoshpere的下一代. A real-time web application framework The Vibe is a new web framework to write low-latency, event-driven, real-time web application and service based on its own protocol built over HTTP and WebSocket which is available to any language and platform. A Vibe focuses on providing reliable full duplex connection and making the best use of it for modern web application development so that teams can focus on event handling without unnecessary ties to low-level details like transport mechanisms and message loss

https://github.com/wenzhihong2003/usefullProjectCollect