interview icon indicating copy to clipboard operation
interview copied to clipboard

Interview challenge for potential candidates.

Results 11 interview issues
Sort by recently updated
recently updated
newest added

## Running the application 1. Run the OneFrame API image on `port 8000` using `docker run -p 8000:8080 paidyinc/one-frame` 2. Run the Scala application defined in `src/main/scala/forex/Main.scala` Example request: `http://localhost:8080/rates?from=USD&to=JPY`...

This is a submission for Forex MTL Interview Assignment. The main idea is we implement a caching mechanism using Redis and store all possible PAIRs every 5 minutes. Considering a...

Details of the Implementation in the Readme https://github.com/anujmax/interview/blob/8656a4f3e203838a8c117d16706b415b849b6e65/forex-mtl/README.md

Proxy service implementation for One Frame. 1. Use sttp client to fetch exchange rates from one frame. 2. Use scalacache-caffeine to store fetches rate in memory. 3. Schedule to fetch...