문제

Do I have to index it? But How do I keep it consistent with the main table. I heard about re-indexing, but when do I do a re-index where appropriate? Thanks Jack

도움이 되었습니까?

해결책

What is becoming sluggish? The inserts? In this case adding an index is probably not going to help. You could look for bulk insert in the docs.

If queries against the large table are getting slow, it may help with an index? If, or how much it helps, depends on how your table is defined and how you access it.

To create an index consult CREATE INDEX statement in the ref manual. It is kept consistent with base table automatically.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top