Use rayon to speed up percentage calculations, add readme

This commit is contained in:
Piv
2023-03-11 22:21:07 +10:30
parent 55e2a0c24c
commit d88fbe707a
2 changed files with 28 additions and 7 deletions

11
README.md Normal file
View File

@@ -0,0 +1,11 @@
# Fast Coster
A business costing system that is super fast:
- Money movements in less than a second
- Overhead allocation in ~2s for large datasets (~10000 departments) and not flushing every from record - up to 10s when flushing from/to allocations
## General Notes
Setting the number of threads in overhead allocation: set RAYON_NUM_THREADS environment variable ([doc](https://github.com/rayon-rs/rayon/blob/master/FAQ.md)).
Note multithreading is only currently used to calculate allocation percentages, it is not used in the main allocation processing.