top | item 3956883 (no title) mattbriggs | 14 years ago "no schemas" means "schema in the application layer". sometimes its nice for the additional flexibility, but its never as reliable. discuss order hn newest baudehlo|14 years ago And not only that, your application becomes littered with:if (data.schema_version === 1) { ... } else if (data.schema_version === 2) { ... }UGH! sreeix|14 years ago But it is better than not having the ability to change the schema when there are more than a few million rows, thanks to the enormous time taken load replies (2)
baudehlo|14 years ago And not only that, your application becomes littered with:if (data.schema_version === 1) { ... } else if (data.schema_version === 2) { ... }UGH! sreeix|14 years ago But it is better than not having the ability to change the schema when there are more than a few million rows, thanks to the enormous time taken load replies (2)
sreeix|14 years ago But it is better than not having the ability to change the schema when there are more than a few million rows, thanks to the enormous time taken load replies (2)
baudehlo|14 years ago
if (data.schema_version === 1) { ... } else if (data.schema_version === 2) { ... }
UGH!
sreeix|14 years ago