• Stars
    star
    133
  • Rank 272,600 (Top 6 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created almost 9 years ago
  • Updated almost 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

非常高性能又简单的Mycat NIO框架,被很多人用于RPC开发以及基础平台中

Mycat-NIO

非常高性能又简单的Mycat NIO框架,被很多人用于RPC开发以及基础平台中

关于SharedBufferPool的newCreated计数

private volatile int newCreated;

目前使用volatile变量统计新分配的ByteBuffer。这个统计不需要严格精确,但相较于AtomicInteger的CAS实现,volatile保证了NIO框架的整体性能。

[更多信息]

关于MockMySQLServer

More Repositories