Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 5 gadiem
add docs to master (#284) * update version to 2.4.0 * Add version options to config file. * update resource * add message version support for dashboard * add message version support for dashboard * Support using version to isolate messages. #220 * update mongo unit tests * update unit tests * update unit tests * Set default versions for consumer groups * solve the problem of issue#181 (#237) * Issue#235 (#238) * solve the problem of issue#181 * solve the problem of issue#235 * refactor * Fix the message persistence bug. #240 * using new CamelCaseNamingStrategy * update packages to .net core 2.2 * update test framework to netcoreapp2.2 * Update .travis.yml * update TargetFramework * Exclude build samples project * update version to 2.4.1 * add samples project to sln for build * update version to 2.4.2 * Fixed PostgreSql version isolation feature bug. (#256) * Fixed spelling errors * modify cap publish Message to rabbitmq slow (#261) * Startup the CAP with the BackgroundService. #265 * update samples * Fixed SQL query bug. #266 * update travis ci config * update travis ci config * adjust dashboard table column width * adjust the consumer execution time to milliseconds * update ignore * add mkdocs.yml * update version to 2.4.3 * add about.md docs * add index.md docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * Fix resource files * add docs * add docs * add docs * Create readme.md * add markdown extensions supports * update about.md * add CNAME fiel * add img * update docs * Update README.zh-cn.md
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
add docs to master (#284) * update version to 2.4.0 * Add version options to config file. * update resource * add message version support for dashboard * add message version support for dashboard * Support using version to isolate messages. #220 * update mongo unit tests * update unit tests * update unit tests * Set default versions for consumer groups * solve the problem of issue#181 (#237) * Issue#235 (#238) * solve the problem of issue#181 * solve the problem of issue#235 * refactor * Fix the message persistence bug. #240 * using new CamelCaseNamingStrategy * update packages to .net core 2.2 * update test framework to netcoreapp2.2 * Update .travis.yml * update TargetFramework * Exclude build samples project * update version to 2.4.1 * add samples project to sln for build * update version to 2.4.2 * Fixed PostgreSql version isolation feature bug. (#256) * Fixed spelling errors * modify cap publish Message to rabbitmq slow (#261) * Startup the CAP with the BackgroundService. #265 * update samples * Fixed SQL query bug. #266 * update travis ci config * update travis ci config * adjust dashboard table column width * adjust the consumer execution time to milliseconds * update ignore * add mkdocs.yml * update version to 2.4.3 * add about.md docs * add index.md docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * add docs * Fix resource files * add docs * add docs * add docs * Create readme.md * add markdown extensions supports * update about.md * add CNAME fiel * add img * update docs * Update README.zh-cn.md
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
pirms 5 gadiem
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # Project information
  2. site_name: CAP
  3. site_url: http://cap.dotnetcore.xyz
  4. site_description: Project documentation with Markdown.
  5. site_author: CAP Team
  6. repo_name: 'GitHub'
  7. repo_url: 'https://github.com/dotnetcore/cap'
  8. docs_dir: 'content'
  9. # Copyright
  10. copyright: Copyright &copy; 2017 <a href="https://github.com/dotnetcore">.NET Core Community</a>, Maintained by the <a href="/about/contact-us/#cap-team">CAP Team</a>.
  11. #theme: material
  12. theme:
  13. name: 'material'
  14. palette:
  15. primary: 'purple'
  16. accent: 'indigo'
  17. language: 'en'
  18. include_sidebar: true
  19. #logo: 'img/logo.png'
  20. #favicon: 'assets/images/favicon.ico'
  21. feature:
  22. tabs: false
  23. i18n:
  24. prev: 'Previous'
  25. next: 'Next'
  26. #Customization
  27. extra:
  28. social:
  29. - type: 'github'
  30. link: 'https://github.com/dotnetcore/cap'
  31. - type: 'twitter'
  32. link: 'https://twitter.com/ncc_community'
  33. - type: 'weibo'
  34. link: 'https://weibo.com/dotnetcore'
  35. # Extensions
  36. markdown_extensions:
  37. - markdown.extensions.admonition
  38. - markdown.extensions.codehilite:
  39. guess_lang: true
  40. linenums: true
  41. - markdown.extensions.def_list
  42. - markdown.extensions.footnotes
  43. - markdown.extensions.meta
  44. - markdown.extensions.toc:
  45. permalink: true
  46. - pymdownx.arithmatex
  47. - pymdownx.betterem:
  48. smart_enable: all
  49. - pymdownx.caret
  50. - pymdownx.critic
  51. - pymdownx.details
  52. - pymdownx.emoji:
  53. emoji_generator: !!python/name:pymdownx.emoji.to_svg
  54. - pymdownx.inlinehilite
  55. - pymdownx.keys
  56. - pymdownx.magiclink:
  57. repo_url_shorthand: true
  58. user: dotnetcore
  59. repo: cap
  60. - pymdownx.mark
  61. - pymdownx.smartsymbols
  62. - pymdownx.superfences
  63. - pymdownx.tasklist:
  64. custom_checkbox: true
  65. - pymdownx.tilde
  66. nav:
  67. - Home: index.md
  68. - User Guide:
  69. - Getting Started: user-guide/getting-started.md
  70. - API Interface: user-guide/api-interface.md
  71. - Configuration: user-guide/configuration.md
  72. - Design Principle: user-guide/design.md
  73. - Implementation Mechanisms: user-guide/implementation.md
  74. - Distributed Transactions: user-guide/transaction.md
  75. - FAQ: user-guide/faq.md
  76. - 使用指南:
  77. - 快速开始: user-guide-cn/getting-started.md
  78. - API 接口: user-guide-cn/api-interface.md
  79. - 配置: user-guide-cn/configuration.md
  80. - 设计原理: user-guide-cn/design-principle.md
  81. - 实现: user-guide-cn/implementation.md
  82. - 分布式事务: user-guide-cn/transactions.md
  83. - FAQ: user-guide-cn/faq.md
  84. - About:
  85. - Release Notes: about/release-notes.md
  86. - Contributing: about/contributing.md
  87. - Contact Us: about/contact-us.md
  88. - License: about/license.md