tylerchr / parallel-database

An experimental parallelized database optimized for read performance
2 stars 0 forks source link

Support basic parallelized queries (multiple goroutines) #6

Open tylerchr opened 8 years ago

tylerchr commented 8 years ago

Let's start by "parallelizing" queries across multiple cores by starting a few goroutines. This will help us set up the machinery for distributing and reducing parallelized queries without being coupled to the actual network communication stuff.

tdecker91 commented 8 years ago

The query now runs using multiple go routines and is reduced properly.