benshi

Results 10 issues of benshi

When I connect the camera, every 30 seconds, send OPTIONS request to keep alive, however, the camera will send response: RTSP/1.0 200 OK...... but camera also send a request: OPTIONS*RTSP/1.0............

enhancement

后台循环执行XReadGroup,会间歇性出现以下错误: 【127.0.0.1:6379/0】Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. 调用方式: ``` while (!token.IsCancellationRequested) { _redis.XReadGroup(consumerGroup, consumerGroup, _options.StreamEntriesCount, pollDelay.Ticks, false, streams.ToDictionary(x => x, y => ">")); } ``` 其中pollDelay.Ticks是10000000,redis版本是6.2.4 ![QQ截图20210829163340](https://user-images.githubusercontent.com/18746523/131244299-9eaac391-1c1b-4538-a0c5-32a0d867c9df.png)

try fix https://github.com/bluenviron/gortsplib/issues/542

When aac payload is `0x00, 0x10, 0x00, 0x00`, current decode successfully return empty AU data list. I think can return an invalid AU-data-length error to skip this payload sdp: ```...

- Added COSINE metric type for vector similarity search - Added text sparse search - upgrade `milvus-proto` to master version

do-not-merge/missing-related-issue
needs-dco
size/XXL

When parsing streaming responses, may not a result data, such as OpenRouter's `: OPENROUTER PROCESSING`, which needs to be ignored during JSON parsing. Related issues: - https://github.com/tmc/langchaingo/issues/1172 - https://github.com/tmc/langchaingo/issues/942 ```go...

**Describe the bug** Using the new version v1.32.1+k3s1, cluster start fails when running with k3d,related issues is https://github.com/k3d-io/k3d/issues/1478 ,the reason is that k3s made changes: https://github.com/k3s-io/k3s-root/pull/65 k3d log output: ```...

bug

下方中的lib文件下的静态链接库为啥没有放到release安装包里面 ```shell $ tree /tmp/sherpa-onnx/static/ /tmp/sherpa-onnx/static ├── bin │   ├── sherpa-onnx │   ├── sherpa-onnx-alsa │   ├── sherpa-onnx-alsa-offline │   ├── sherpa-onnx-alsa-offline-audio-tagging │   ├── sherpa-onnx-alsa-offline-speaker-identification │   ├── sherpa-onnx-keyword-spotter │   ├── sherpa-onnx-keyword-spotter-alsa │  ...

使用如下配置生产table实体类: ``` globalConfig.enableEntity() .setWithLombok(true) .setWithBaseClassEnable(true) .setBaseOverwriteEnable(true) .setAlwaysGenColumnAnnotation(true) .setOverwriteEnable(false) .setLombokNoArgsConstructorEnable(false) .setLombokNoArgsConstructorEnable(false); ``` 生成的文件如下: `UserBase.java` ``` public class UserBase implements Serializable { private static final long serialVersionUID = 1L; @Id @Column("id") private...

如果数据库表中table1中有字段有如下特殊字符串 - `switch`这种java的关键词 - `1to1`这种以数字开头的字段 生成的实体类编译会出错 ``` public class A { @Column("switch") private Boolean switch; @Column("1to1") private Boolean 1to1; } ``` https://github.com/mybatis-flex/mybatis-flex/blob/82ed8229e2b2024a9d41d32c8bce0e8d489d68c2/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/entity/Column.java#L43 上面这个最好加一个setProperty方法可以重命名属性字段