An open API service indexing awesome lists of open source software.

https://github.com/benjaminmichaelis/benchmarks

Different Benchmarks I've made for perf testing
https://github.com/benjaminmichaelis/benchmarks

Last synced: about 2 months ago
JSON representation

Different Benchmarks I've made for perf testing

Awesome Lists containing this project

README

        

# Benchmark app template

This template creates a [BenchmarkDotNet](https://github.com/dotnet/BenchmarkDotNet) solution, along with a console project with unit tests.

The point of this is so that you can easily create a benchmark project to test out different algorithms, or to test out different ways of doing things.

## Startup
- To run the benchmarks, run `dotnet run -c Release` in the `BenchmarkApp` folder.

## Template

Create a new app in your current directory by running.

```cli
dotnet new bmichaelis.quickstart.benchmarkconsole
```

### Parameters

[Default template options](https://learn.microsoft.com/dotnet/core/tools/dotnet-new#options)

## Key Features

- Should just work out of the box. Not meant to be the perfect project setup to start with, but rather a quick way to get started with benchmarking and testing out different algorithms or such.