Seeking advice regarding buying a new workstation

  • Thread starter Thread starter sak
  • Start date Start date

sak

Joined
8/16/09
Messages
84
Points
18
Hey guys, I am going to use microsoft sql server for tick data manipulation. But I don't want to spend $3000 for buying some exotic workstation. However, I do need something more than regular PC. What kind of configuration do you recommend ? Currently I have a quad core, 8MB laptop and it often freezes when my query gets complicated.
 
I would recommend not using SQL Server. There are several possibilities for alternatives, ranging from NoSQL (Mongo, Redis) to traditional OSS SQL (Postgres) to ad hoc (serial C structs read using Python glue).

The main things you'd want in a server are memory (16 GB+) and fast network connection. These are typically the bottlenecks. If you want multiple independent queries, could help to go highly multicore, but are you really going to have 16+ independent queries?
 
Back
Top Bottom