I have to create one table that contains 30 columns and thousands of row. How do I manage this?
Is there any data structure like B+ tree for tables which stores non required data in disk?
I have to implement it using Java/JDBC.
Any idea?
|
|
I'd base an in-memory solution on a structure like
and either choose a
If persistence is a requirement, define the table on your existing database engine and develop some SQL query statements to just read the required data. |
|||
|
|
|
NTFS, ReiserFS, NSS, XFS, and JFS filesystems all use this type of tree for metadata indexing. Relational database management systems such as IBM DB2, Informix, Microsoft SQL Server, Oracle 8, Sybase ASE, PostgreSQL, Firebird, MySQL and SQLite support this type of tree for table indices. And thousands of records are normal in enterprise applications. Applying indexes on fields that are frequently retrieved, it would make search better but will affect insertion. Try normalizing the database further if possible. At application layer, you can use Caching API's like OSCache, EHCache, JCache etc. |
||||
|
|