Just what is 'A big database'?

后端 未结 8 1611
独厮守ぢ
独厮守ぢ 2021-01-29 23:35

Ok, dumb question I know but I see the nebulous comment \'a large database\' as well as small and medium and I wonder just what that means. Can someone define what a small, medi

8条回答
  •  暖寄归人
    2021-01-29 23:46

    One way to figure it is by observing your test queries.

    A small database is one where indexes don't matter.

    A medium database is one where queries take longer than one second if you don't have an appropriate index in place.

    A big database is one where queries often take hours to optimize, using a combination of query design, index modification, and many test cycles.

提交回复
热议问题