├── README.md ├── adhoc.py ├── conf.json ├── const.py ├── diagram ├── diagram.key ├── diagram.pdf └── diagram.svg ├── example ├── README.md ├── host └── task ├── redis.sh ├── redisManager.py ├── redisWorker.py ├── requirements.txt └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/README.md -------------------------------------------------------------------------------- /adhoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/adhoc.py -------------------------------------------------------------------------------- /conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/conf.json -------------------------------------------------------------------------------- /const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/const.py -------------------------------------------------------------------------------- /diagram/diagram.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/diagram/diagram.key -------------------------------------------------------------------------------- /diagram/diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/diagram/diagram.pdf -------------------------------------------------------------------------------- /diagram/diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/diagram/diagram.svg -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/example/README.md -------------------------------------------------------------------------------- /example/host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/example/host -------------------------------------------------------------------------------- /example/task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/example/task -------------------------------------------------------------------------------- /redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/redis.sh -------------------------------------------------------------------------------- /redisManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/redisManager.py -------------------------------------------------------------------------------- /redisWorker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/redisWorker.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | redis 2 | psutil -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1a1a11a/distComp/HEAD/utils.py --------------------------------------------------------------------------------