刘丹冰

Results 111 comments of 刘丹冰

@trash-boy 您可以对此提交PR

@trash-boy 感谢提交PR,已merge, https://github.com/aceld/zinx/pull/295

请问除了example里的api例子,有没有一些实际的带简单业务的应用场景呢,比如你再readme里提供的web端代码是否有,想看到直观的效果。谢谢

1. For the first question, in Kafka, the lifecycle of data processing within a flow ends when all the Functions in that flow have completed execution. The handling of result...

The current Kis-flow does not yet support DAG (Directed Acyclic Graph) scheduling, but we can perform parallel streaming operations. For example, in cases like combining flow1 and flow2 to generate...

@jenerse 我了解到你的问题了,你需要如下步骤来创建一个zinx项目。 1. 创建文件夹,如`MyZinxProject/` ,然后`cd`进去。 2. 创建一个`main.go` 或者其他包含`main()` 函数的go文件,添加如下代码: ```go package main import ( "fmt" "github.com/aceld/zinx/ziface" "github.com/aceld/zinx/znet" ) // PingRouter MsgId=1 type PingRouter struct { znet.BaseRouter } //Ping Handle MsgId=1...

是的,目前如果需要两个流的同步,只能有以下几种办法: 1、通过存储媒介做同步机制,比如阻塞、轮询等 2、直接抛弃当前包,交给上层消息队列MQ,如kafka等做重新消费处理 KisFlow目前还没有实现窗口windows的配置机制,实际上如果实现该机制,底层逻辑也是阻塞,或者交给delay 集合,稍后再重试等。

> I think it can support toml format file for import or export configuration. > > because a lot of companys use it be configuration files. thank @CyanChan Thank you...

@EquentR 看了下,修复的问题和思路没问题,我之前欠考虑了,主要问题抽象层`ILogger()` 增加了接口,确实存在无法向下兼容的问题,可能会导致升级用户编译的问题,这块看看如何做到用户无感知,或者兼容写法,容我再思考思考哈~