Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/noogler-eng/leetcode_workers

this will indicate how leetcode main server is working so smoothly, there is less load on the main server which is done using worker nodes, this model is implemented using redis or external queue
https://github.com/noogler-eng/leetcode_workers

leetcode redis

Last synced: 26 days ago
JSON representation

this will indicate how leetcode main server is working so smoothly, there is less load on the main server which is done using worker nodes, this model is implemented using redis or external queue

Awesome Lists containing this project

README

        

### Main server
Redis is an open-source, in-memory data structure store,
used as a database, cache, and message broker One of the key
features of Redis is its ability to keep all data in memory,
which allows for high performance and low latency access to data.

1. this will send the prblem to the redis or in memory queue which is connectd to kafka
2. kafka or pub sub models sends it to workers node
3. on worker nodes they will process it and send back test result ot client node (extra services can be used)

### Worker
1. Here kafka or load balance will it probelm or task to do it
2. reduces the load of cheking the code on main server
3. this are worker nodes or server, code was written only for checking the problem