摘要:
为了应对高并发的服务器端开发,微软在2009年提出了一种更优雅地实现异步编程的方式Reactive Programming即反应式编程。随后其他技术紧随其后,比如ES6通过引入类似的异步编程方式等。 在高性能的I/O设计中,有两个比较著名的模式Reactor和Proactor模式,其中Reactor 阅读全文
摘要:
先说一下lambda表达式:lambda 表达式的语法格式如下:(parameters) -> expression (parameters) ->{ statements; } //或者这种Lambda 表达式的简单例子:// 1. 不需要参数,返回值为 5 () -> 5 // 2. 接收一个参 阅读全文
摘要:
grant select on allindata_deb.user to lhz@% identified by 123456 grant select on test.test to test@% identified by 123456 阅读全文