왜 관계형 데이터베이스를 포함하는 현재 솔루션에서 벗어나고 싶습니까? 조만간 데이터 저장소를 변경하는 것을 권장하지 않습니다 (믿거 나 말거나).
경험상의 문제가있어 관계형 데이터베이스를 바꾸려면 Apache Cassandra을 조사하는 것이 좋습니다.
당신은 내가 이런 걸 보이는 데이터 모델 제안 카산드라 흥미 경우
Commands = { // this is a ColumnFamily (CF)
commandObject1: { // this is the key to this Row inside the CF
// now we have an infinite # of columns in this row
field1: "value1",
field2: "value2",
field3: "value3"
}, // end row
commandObject2: { // this is the key to another row in the CF
// now we have another infinite # of columns in this row
field1: "value1",
field2: "value2",
field3: "value3"
field4: "value4",
field5: "value5"
},
}
(감사 아린 (그의 뛰어난 blog post)이 카산드라의 데이터 모델 표기법)
를