2024-10-17 14:27:08 +00:00
# Backend internal interview (rust) - basic-fixed
2024-10-21 03:54:58 +00:00
> [!Tip]
2025-01-02 12:43:04 +00:00
> Use [Improve branch](/jesus/be-technical-interview-rust/src/branch/improved) as a full refactoring for <u>better quality, maintenance and readability</u>. (Structs, implementaitions, settings for multiple inputs, etc).
2024-10-21 03:54:05 +00:00
2024-10-19 13:48:39 +00:00
> [!NOTE]
2024-10-21 03:56:07 +00:00
> Code in this branch simply **works as expected** trying to be preserve initial approach and not too much disruptive changes.<br>
2024-10-19 13:48:39 +00:00
> It is able to **process multiple metrics in parallel** (input.txt and input_2.txt). <br>
2024-10-17 14:47:49 +00:00
> A full refactoring has to be done for <u>better quality, maintenance and be more readable</u>. (Structs, implementaitions, settings for multiple inputs, etc). <br>
2024-10-17 14:27:08 +00:00
2024-10-19 13:48:39 +00:00
> [!CAUTION]
2025-01-02 12:43:04 +00:00
> [Improve branch](/jesus/be-technical-interview-rust/src/branch/improved) should try to make code more modular and simple, avoid hardcoding, etc.
2024-10-19 13:48:39 +00:00
2025-01-02 12:43:04 +00:00
See [main changes ](/jesus/be-technical-interview-rust/src/branch/basic-fixed/CHANGES.md )
2024-10-17 13:59:21 +00:00
2024-10-17 14:05:05 +00:00
A **Refactor metric-consumer** task
[Home Task exercise description ](Home-Task_exercise_interview_Rust.pdf )
There are several branches developed as proposal:
2025-01-02 12:43:04 +00:00
- [Basic fixed one ](/jesus/be-technical-interview-rust/src/branch/basic-fixed )
2024-10-17 14:47:49 +00:00
> A basic code review, fixed with minor and essential changes to work as expected. <br>
2024-10-17 14:05:05 +00:00
> Tests are included for verification.
2025-01-02 12:43:04 +00:00
- [Improve one ](/jesus/be-technical-interview-rust/src/branch/improved )
2024-10-17 14:05:05 +00:00
2024-10-21 03:54:05 +00:00
- [x] Define a basic model, easily to extend and modify. **Abstraction / Generic** .
- [x] Structs and implementations to specific metricis traitments. **Modular appoach** .
- [x] Settings and configuration for interactive and non interactive processing (batch mode) **Customize on context** .