Skip to content

Commit

Permalink
feat(doc): add who-is-using.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahoo-Wang committed Jan 4, 2024
1 parent f39936f commit 2ef2a76
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 42 deletions.
13 changes: 10 additions & 3 deletions documentation/docs/.vitepress/configs/navbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: "资源",
Expand Down
81 changes: 42 additions & 39 deletions documentation/docs/.vitepress/configs/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'},
],
}, {
Expand Down Expand Up @@ -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'}
],
}
]
}
]
}
14 changes: 14 additions & 0 deletions documentation/docs/reference/showcase/who-is-using.md
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 2ef2a76

Please sign in to comment.