by shigemk2

当面は技術的なことしか書かない

97 Things Every Programmer Should Know 48 Large, Interconnected Data Belongs to a Database

IF YOUR APPLICATION is going to handle a large, persistent, interconnected set of data elements, don't hesitate to store it in a relational database.

If your application's data is larger than the system's RAM, an indexed RDBMS table will perform orders of magnitude faster than your library's map collection type, which will thrash virtual memory pages. Modern database offerings can easily grow with your needs.

keep in mind that the RDBMS will sweat hard to optimize your SQL commands, allowing you to concentrate on your application's functionality rather than on algorithmic tuning.

Advanced database systems will even take advantage of multicore processors behind your back. And, as technology improves, so will your application's performance.