https://github.com/tupac-amaru/benchmarks
benchmark repository
https://github.com/tupac-amaru/benchmarks
benchmark benchmark-measures benchmark-scripts benchmarks
Last synced: 5 months ago
JSON representation
benchmark repository
- Host: GitHub
- URL: https://github.com/tupac-amaru/benchmarks
- Owner: tupac-amaru
- License: mit
- Created: 2019-03-14T00:59:24.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-14T05:44:11.000Z (almost 7 years ago)
- Last Synced: 2025-08-16T22:33:57.418Z (7 months ago)
- Topics: benchmark, benchmark-measures, benchmark-scripts, benchmarks
- Language: C#
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-zh_CN.adoc
- License: LICENSE
Awesome Lists containing this project
README
link:README.adoc[English (United States)]|中文
= Benchmarks =
维基百科: https://en.wikipedia.org/wiki/Benchmark_(computing)
====
在一些受限场景下,性能更好的组件,库,框架以及服务往往能为节省更多的资源
如何评估一个组件,库,框架以及服务的性能, 最佳的做法就是写代码来评估
这个代码库的意义就是用来收集各类的对组件,库,框架以及服务的基准测试代码
====
= 结构 =
[source,shell]
----
benchmarks
├── language
│ ├── component
│ │ ├── component-name
│ │ │ ├── purpose
│ │ │ │ ├── test code
│ │ │ │ └── README
│ │ └── Others
│ ├── library
│ │ ├── library-name
│ │ │ ├── version
│ │ │ │ ├── test code
│ │ │ │ └── README
│ │ └── Others
│ ├── framework
│ │ ├── version
│ │ │ ├── purpose
│ │ │ │ ├── test code
│ │ │ │ └── README
│ │ └── Others
│ ├── service
│ │ ├── version
│ │ │ ├── purpose
│ │ │ │ ├── test code
│ │ │ │ └── README
│ │ └── Others
│ └── scaffold
│ ├── BenchmarkDotNet
│ │ ├── codes
│ │ ├── benchmark script
│ │ └── README
│ └── Others
└─── Others
----