Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benhalverson/consumer-producer-challenge
Technical challenge from inVision
https://github.com/benhalverson/consumer-producer-challenge
Last synced: 7 days ago
JSON representation
Technical challenge from inVision
- Host: GitHub
- URL: https://github.com/benhalverson/consumer-producer-challenge
- Owner: benhalverson
- Created: 2015-07-24T21:40:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-04-25T06:51:59.000Z (over 5 years ago)
- Last Synced: 2024-04-11T16:12:19.805Z (7 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Requirements
* The Producer and Consumer as separate NodeJS services.
* The Producer generating random addition expressions of two positive integers, e.g. "2+3="
* The Consumer computing and returning the correct mathematical result for the each expression it receives
* The Consumer successfully processing requests from two Producers concurrently at a rate of at least 1 req/sec from each Producer (2 req/sec in aggregate)
* The Consumer and Producer should log all messages they generate and receive.