3
3
3ds2012-05-03 06:06:13
Python
3ds, 2012-05-03 06:06:13

Recommend books on SQL, Python optimization for high loads?

Advise books on optimizing sql queries for high loads, as well as python code. Thank you!

Answer the question

In order to leave comments, you need to log in

6 answer(s)
I
Igor Shcherbin, 2012-05-03
@ischerbin

High Performance MySQL Second Edition

G
gro, 2012-05-03
@gro

The most optimal SQL query: no SQL query.

M
Maxim Avanov, 2012-05-03
@Ghostwriter

PythonSpeed/PerformanceTips

P
Pavel Nazarov, 2012-05-03
@smbd

Book: PostgreSQL 9.0 High Performance
Very sensible, worth reading, even if you do not have PostgreSQL, because, firstly, there is a lot of useful information about the iron part, and secondly, many things make sense for other DBMS, taking into account their specifics , certainly.
By itself, the Python code, kmk, makes sense to optimize after the libraries for bottlenecks are correctly selected, that is, if there is a large network load, then twisted / tornado, if there are a lot of calculations - numpy / scipy, and so on.
And after the optimal data processing algorithms are selected.

A
Angerslave, 2012-05-03
@Angerslave

The architecture is optimized for high loads, and the code and base are a secondary matter. Often even the opposite rule applies - with identical functionality of two architectures, one works slower at a small load, but faster at a large one, and, most importantly, holds a large load.
In general, I would advise you to read highscalability.com/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question