明理宝贝

文章
9
资源
0
加入时间
2年10月24天

部署MySQL InnoDB集群

MySQL InnoDB Cluster简介MySQL InnoDB Cluster 是最新GA的MySQL高可用方案,利用MySQL Group Replication和MySQL Shell、MySQL Router可以轻松搭建强壮的高可用方案。MySQL Shell 是新的mysql 客户端工具支持x protocol和mysql protocol,具备JavaScript和python可编程能力,作为搭建InnoDB Cluster管理工具。MySQL Router 是访问路由转发中间件

经典面试题 函数柯里化

function adds(...args) { let nums = args.reduce((pre, cur) => pre + cur, 0) return function fn(...ar) { nums = nums + ar.reduce((pre, cur) => pre + cur, 0) adds = nums return fn } }; a