Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to store data, writte and read, in a single table with can be build with no relationships. Rows can up to 30 Millions or more. The table is for a search engine application.All application (HTTP Server, Database Server, Web Application, etc) resides in the same server, just now the traffic is not enought hight for building some distributed system.

I want to know which factors are going to make decrease my database read performance while the data and the users grow. Which practices are right to deal with hight speed? I have well columns indexed, reduced redundant data, and other simple practices. All I want to know is what I need to do for reading the data in that table speedly and with multiples SELECTS at a time. Is NoSQL needed?Is distributed database nedeed?

Any issue about it will be appreciated

share|improve this question
create indexes on columns – hjpotter92 Jul 12 '12 at 9:11
3  
I wonder what kind of application/data needs only one table. – ypercube Jul 12 '12 at 9:26
This is too broad a question. I suggest you add some more details like the table definition, what kind of queries you plan to run, the queries that are slow etc. Otherwise, I don't think this is answerable. – ypercube Jul 12 '12 at 9:53
If its going to be mostly selects, you can add slave servers to distribute the select load – Yash Dayal Jul 12 '12 at 9:59

closed as not a real question by ypercube, Juhana, usr, TerryE, bažmegakapa Jul 12 '12 at 11:02

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.