热门IT资讯网

Markdown写出高大上流程图

发表于:2024-11-23 作者:热门IT资讯网编辑
编辑最后更新 2024年11月23日,Markdown是一个轻量级的标记语言,使用普通文本编辑器就能快速编写,不仅显示格式丰富,功能也毫不含糊,分享一个md格式的API请求流程图。start=>start: API请求cache=>ope

Markdown是一个轻量级的标记语言,使用普通文本编辑器就能快速编写,不仅显示格式丰富,功能也毫不含糊,分享一个md格式的API请求流程图。

start=>start: API请求cache=>operation: 读取Redis缓存cached=>condition: 是否有缓存?sendMq=>operation: 发送MQ,后台服务更新缓存info=>operation: 读取信息setCache=>operation: 保存缓存end=>end: 返回信息start->cache->cachedcached(yes)->sendMqcached(no)->infoinfo->setCachesetCache->endsendMq->end

显示效果:

start=>start: 接收到消息info=>operation: 读取信息setCache=>operation: 更新缓存end=>end: 处理结束start->info->setCache->end

显示效果:

md在线编辑器:https://www.mdeditor.com/

0