python - How to implementing a graph for REST API -
i'm trying create effective course planner engineering school @ college , need implement graph of of courses offered , different ways navigate through them graduation. i've implemented tsp type problem in c, wondering technologies best used implement in production web app. specifically, i'm wondering best setup on end, includes:
- rest api interface front end
- workers of computationally intensive operations on graph
- the graph imagine best implemented type of db
- web crawler retrieves up-to-date list of courses , attributes , inserts entries graph
my proposed config consist of django api, python scripts workers, adjacency list in postgres db graph, , daemonized python script web crawler using scrapy library (mostly keep in few different technologies possible).
are there obvious flaws in design? example, better write worker (#2) in c speed things or not worth time? more importantly, there other commonly used methods implementing graphs service this?
Comments
Post a Comment