I
I
Ivan Melnikov2019-11-25 09:00:20
Database
Ivan Melnikov, 2019-11-25 09:00:20

Is there any class of algorithms that are the most productive on the DBMS side?

Is there any class of algorithms that are the most productive on the DBMS side?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
V
Vladimir Korotenko, 2019-11-25
@firedragon

Just puzzled. The most performant strategy is to query only the indexes, and reduce the "greed" of the query.
The second is data denormalization.
The third use of prepared statement
The fourth logic on the side of the database !!!!!!! very dangerous stuff!

X
xmoonlight, 2019-11-25
@xmoonlight

"Threshold/Waterfall" descent from unique value to non-unique value at each step (within one or more queries) or "glossary".

T
TheRonCronix, 2019-11-25
@TheRonCronix

100% yes. For example, you should not do a join on the client side by selecting from one table, and then selecting from the second in a loop (even if the selection goes by index on the second table). It's better to send a single RDBMS query.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question