https://github.com/errm/fib
An example application that burns CPU.
https://github.com/errm/fib
Last synced: 3 months ago
JSON representation
An example application that burns CPU.
- Host: GitHub
- URL: https://github.com/errm/fib
- Owner: errm
- Created: 2018-01-21T16:03:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-16T03:38:16.000Z (about 3 years ago)
- Last Synced: 2025-04-01T17:38:41.347Z (about 1 year ago)
- Language: Dockerfile
- Size: 14.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fib
### An example application that burns CPU.
This is a very simple example application that calucates and returns the n'th
fibonacci number.
It uses a very simple recursive function in order to calcuate the result,
this of course uses lots of CPU when n is higher.
I reach for this application when I want something I can use to test
autoscaling of web applications based on CPU usage.