MatteoSp
MatteoSp

Reputation: 3048

Highly scalable db schema for recurring events

Which is the best way to design a db schema in which store hundreds of thousand events, with recurrencies, and that will support milions of query asking which events will occur in a range of dates?

I mean, designing the tables to describe the model should be not difficult, but doing that in such a way that the huge amount of data can be searched quickly... well, I have no idea of how to do that.

Upvotes: 1

Views: 396

Answers (1)

coryT
coryT

Reputation: 703

Why not build your datamodel as you normally would (3NF-5NF) and add another layer that is better suited to handle searching like Lucene or Solr?

Upvotes: 1

Related Questions