zealzhangz

Results 6 issues of zealzhangz

[ISSUE 559](https://github.com/otale/tale/issues/559)

具体分析可以看我的博客: https://www.zhangaoo.com/article/index-page-slow-load 简单的解决办法就是加缓存,同时需要维护缓存,最简单粗暴的方法就是编辑和删除文章时清理全部缓存: ```java public static String mdToHtml(String markdown) { if (StringKit.isBlank(markdown)) { return ""; } String cacheContent = cache.get(String.valueOf(markdown.hashCode())); if(cacheContent != null){ return cacheContent; } List extensions = Arrays.asList(TablesExtension.create());...

When I use version 1.0.2 if my HTML table cells was merged.The exported Excel file is also merged.When I upgraded to version 1.1.1 It not work.Here's part of my code....

Create PV failed ```bash kubectl create -f local_storage.yaml storageclass.storage.k8s.io/standard-resize created The PersistentVolume "influxdb-data-pv" is invalid: spec.nodeAffinity: Required value: Local volume requires node affinity ``` I found a sample,It can create...

### Describe the bug(Bug 描述) 使用社区二进制版本openGemini-1.2.0-linux-amd64在CentOS Linux release 7.6. 上部署成功后,使用自带的ts-cli工具集群认证,连接使用输入用户名无反应,多次输入回车命令行界面显示异常,退出ts-cli后发现Linux shell 回车也会显示异常,经测试目前使用v1.1.1正常。如下图: 社区其他群友反馈,,windows上使用正常,银河麒麟 4.19.90-52.22.v2207.ky10.x86_64使用和CentOS 7.6 异常信息一致,使用不正常,如下图: ![image](https://github.com/openGemini/openGemini/assets/8454011/c8c01221-3777-4f93-87cf-2672639405b0) ### To Reproduce(Bug 复现步骤) 1. 使用二进制版本(openGemini-1.2.0-linux-amd64)部署 2. 使用ts-cli连接集群 3. 使用auth命令进行认证,回车再现问题 ### Expected behavior(期望结果)...

bug