From 2ef2a76974556efd5dc4df8f978e8a7024918d75 Mon Sep 17 00:00:00 2001 From: Ahoo Wang Date: Thu, 4 Jan 2024 10:17:50 +0800 Subject: [PATCH] feat(doc): add who-is-using.md --- .../docs/.vitepress/configs/navbar.ts | 13 ++- .../docs/.vitepress/configs/sidebar.ts | 81 ++++++++++--------- .../docs/reference/showcase/who-is-using.md | 14 ++++ 3 files changed, 66 insertions(+), 42 deletions(-) create mode 100644 documentation/docs/reference/showcase/who-is-using.md diff --git a/documentation/docs/.vitepress/configs/navbar.ts b/documentation/docs/.vitepress/configs/navbar.ts index 095b413efc..a5547283e8 100644 --- a/documentation/docs/.vitepress/configs/navbar.ts +++ b/documentation/docs/.vitepress/configs/navbar.ts @@ -7,9 +7,16 @@ export const navbar: DefaultTheme.NavItem[] = [ activeMatch: '^/guide/' }, { - text: '配置', - link: '/reference/config/basic', - activeMatch: '^/reference/config/' + text: '参考', + activeMatch: '^/reference/', + items: [ + { + text: '配置', + link: '/reference/config/basic', + }, + {text: '谁在使用 CosId', link: '/reference/showcase/who-is-using'}, + {text: '博客', link: '/reference/blog/ShardingSphere-Integration-CosId'}, + ] }, { text: "资源", diff --git a/documentation/docs/.vitepress/configs/sidebar.ts b/documentation/docs/.vitepress/configs/sidebar.ts index f846087f8a..73e52d7de5 100644 --- a/documentation/docs/.vitepress/configs/sidebar.ts +++ b/documentation/docs/.vitepress/configs/sidebar.ts @@ -28,7 +28,7 @@ export const sidebar: DefaultTheme.Sidebar = { {text: 'CosIdGenerator', link: 'cosid-generator'}, {text: 'IdConverter', link: 'id-converter'}, {text: 'Id生成器容器', link: 'provider'}, - {text:'特定场景ID配置',link: 'specific-id'}, + {text: '特定场景ID配置', link: 'specific-id'}, {text: 'CosIdProxy', link: 'cosid-proxy'}, ], }, { @@ -67,47 +67,50 @@ export const sidebar: DefaultTheme.Sidebar = { {text: '取模分片算法', link: 'mod-cycle'}, {text: '时间范围分片算法', link: 'interval-timeline'} ], - }, { - text: '配置', - link: '/reference/config/basic' - } - ], - '/reference/': [ - { - text: '配置', - base: '/reference/config/', - collapsed: false, - items: [ - {text: '基础', link: 'basic'}, - {text: '工作进程号', link: 'machine'}, - {text: 'Snowflake', link: 'snowflake'}, - {text: 'Segment', link: 'segment'}, - {text: 'CosIdGenerator', link: 'cosid-generator'}, - {text: 'Zookeeper', link: 'zookeeper'}, - {text: 'ShardingSphere', link: 'shardingsphere'}, - ], }, - // { - // text: 'API', - // base: '/reference/api/', - // collapsed: false, - // items: [ - // {text: 'IdGenerator', link: 'id-generator'}, - // {text: 'IdConverter', link: 'id-converter'}, - // {text: 'IdGeneratorProvider', link: 'provider'}, - // {text: 'CosIdGenerator', link: 'cosid-generator'}, - // {text: 'Segment', link: 'segment'}, - // {text: 'SnowflakeId', link: 'snowflake'}, - // {text: 'Sharding', link: 'sharding'}, - // ], - // }, { - text: '博客', - base: '/reference/blog/', + text: '参考', collapsed: false, items: [ - {text: 'ShardingSphere 集成 CosId 实战', link: 'ShardingSphere-Integration-CosId'} - ], + {text: '配置', link: '/reference/config/basic'}, + {text: '谁在使用 CosId', link: '/reference/showcase/who-is-using'} + ] } - ] + ], + '/reference/': + [ + { + text: '参考', + items: [ + { + text: '配置', + base: '/reference/config/', + collapsed: false, + items: [ + {text: '基础配置', link: 'basic'}, + {text: '工作进程号', link: 'machine'}, + {text: 'Snowflake', link: 'snowflake'}, + {text: 'Segment', link: 'segment'}, + {text: 'CosIdGenerator', link: 'cosid-generator'}, + {text: 'Zookeeper', link: 'zookeeper'}, + {text: 'ShardingSphere', link: 'shardingsphere'}, + ], + }, { + text: '展示', + base: '/reference/showcase/', + collapsed: false, + items: [ + {text: '谁在使用 CosId', link: 'who-is-using'} + ] + }, { + text: '博客', + base: '/reference/blog/', + collapsed: false, + items: [ + {text: 'ShardingSphere 集成 CosId 实战', link: 'ShardingSphere-Integration-CosId'} + ], + } + ] + } + ] } \ No newline at end of file diff --git a/documentation/docs/reference/showcase/who-is-using.md b/documentation/docs/reference/showcase/who-is-using.md new file mode 100644 index 0000000000..f11d6b94b9 --- /dev/null +++ b/documentation/docs/reference/showcase/who-is-using.md @@ -0,0 +1,14 @@ +# 谁在使用 CosId + +## 开源项目 + +- [ShardingSphere](https://github.com/apache/shardingsphere): 分布式SQL事务和查询引擎,用于在任何数据库上进行数据分片、扩展、加密等 +- [Wow](https://github.com/Ahoo-Wang/Wow): 基于 DDD & EventSourcing 的现代响应式 CQRS 架构微服务开发框架 +- [CoSky](https://github.com/Ahoo-Wang/CoSky): 高性能、低成本微服务治理平台 +- [CoSec](https://github.com/Ahoo-Wang/CoSec): 基于 RBAC 和策略的多租户响应式安全框架 +- [CoCache](https://github.com/Ahoo-Wang/CoCache): 分布式一致性二级缓存框架 +- [Simba](https://github.com/Ahoo-Wang/Simba): 易用、灵活的分布式锁服务 + +## 公司 + +- [买道传感网](https://www.51mydao.com) \ No newline at end of file