V
V
Vitaly Pukhov2015-11-24 16:50:53
Programming
Vitaly Pukhov, 2015-11-24 16:50:53

Remote DB, how best to implement?

The bottom line is, if there are N users and 1 database, there is a weak communication channel between the user and the database (say 1sec ping and 200kbit speed), the database can contain, say, 10MB and is constantly updated (10 rows per hour), but you need to constantly request different large samples. Because of the channel, regular SQL is no longer an option, it is not an option, you need to somehow cache the database locally and periodically update the local copy. The question is how best to implement this? What to use?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
nirvimel, 2015-11-24
@nirvimel

This is called replication .

K
Komly, 2015-11-24
@Komly

It is not entirely clear what is meant by
as I understand it, not the query language itself, but the specific implementation of the database.
There is nothing wrong with SQL databases, you just need to really add a cache on the client, for example using SQLite or regular files.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question