|
|
|
|
|
by davidmathers
6077 days ago
|
|
it seems like you’re looking for realistically structured data, not data twisted to fit a formula convenient for mathematicians. The appropriate words here are "logical" and "physical" not "real" and "unreal". A relation is a logical data structure. Hash tables, trees, and graphs are all physical data structures. Another accurate thing to say is that hash tables, trees and graphs are all "pointer-based databases" and relational databases are "pointer-free databases". The second one will be confusing to people accustomed to putting pointers into relations (like what rails does) and turning the relational database into an ad-hoc graph database. |
|