# fastIndex索引数据对象同步补充方案 **Repository Path**: honeweimimeng/fast-index ## Basic Information - **Project Name**: fastIndex索引数据对象同步补充方案 - **Description**: fastIndex是一个索引同步组件,用于执行语句间的转化和数据的同步; - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-21 - **Last Updated**: 2023-03-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### What can I do for you - fastIndex是一个索引同步组件,用于执行语句间的转化和数据的同步; - 支持sql语句同步到es; - 支持典型CRUD语句解析; - 不可做为数据主要同步方案,仅作为备选容错方案!!!; # FastIndex ![](https://gitee.com/honeweimimeng/fast-index/raw/master/icons/icon.png) ![](https://img.shields.io/github/tag/pandao/editor.md.svg) ### 可拓展的formatter > 支持对于formatter的灵活拓展,当然您不需要关心其他实现细节,仅需要把自定义的formatter加入到pipeline当中即可。 自定义executor >您可以灵活拓展出自己的执行器,目前支持基于池和复用的线程模型 #### Quick Start ```java String sql = "UPDATE test_doc SET test_doc.name = '王五' WHERE test_doc.id = '123';"; ExecutorContext context = new ExecutorContext<>(new FormatterInitializer<>(sql)); AbstractExecutor executor = new MultiplexingExecutor<>(context); executor.execute(); ``` ### End