J
J
JustAleksei2016-01-29 10:55:19
SQL
JustAleksei, 2016-01-29 10:55:19

Which database to choose (and how to further configure it) solely for the fastest possible inserts of new records?

Hello! The essence of the situation:
Python application writes data to the database. And that's pretty much all it does.
So far, no reading is required. Data integrity must be guaranteed. The number of requests per second is not constant - it can be 1 request / sec, or maybe 1000 / sec.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexey Lebedev, 2016-01-29
@JustAleksei

First we use Read uncommitted.
We do not use indexes.
There will be problems:
We write to a file, and from it we slowly transfer it to the database.
Maybe store everything in files?
What data and what for do you need?

V
Vlad Zhivotnev, 2016-01-29
@inkvizitor68sl

mysql MyISAM was made for this. Especially if without indexes.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question