# ice-docs **Repository Path**: citiao/ice-docs ## Basic Information - **Project Name**: ice-docs - **Description**: Java规则引擎-ice的文档站(用全新的思想编排规则) 对于业务中需要设计复杂/灵活变动业务(规则/流程),提供一个全新的抽象编排解决方案 新的编排思想,轻量级,高性能,提供可视化操作页面 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: http://waitmoon.com/docs/zh - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-07-12 - **Last Updated**: 2022-07-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README --- home: true title: Home heroImage: /images/hero.svg actions: - text: Get started link: /guide/getting-started.html type: primary - text: Introduction link: /guide/ type: secondary features: - title: Orchestration Ideas details: The new orchestration idea provides greater freedom of configuration while ensuring decoupling and reuse, which greatly reduces the cost of rule maintenance. - title: High performance details: It consumes almost no performance, just focus on the performance of the business itself. - title: Access cost details: Low cost to learn to understand, develop configuration and abstraction. footer: Apache-2.0 Licensed | Copyright © 2022-present Waitmoon --- ### Non-Spring Support > Directly rely on ice-core intelligence ```java IceNioClient iceNioClient = new IceNioClient(1, "127.0.0.1:18121", "com.ice.test"); //Incoming app, server address and leaf node scan path iceNioClient.connect(); //Connect to the remote server and initialize the ice configuration iceNioClient.destroy(); //It is best to clean up after the application is closed~ ```