Why object database is better than a relational database!

preview_player
Показать описание
I work with Cache databases and have been so amazed at the speed and efficiency of cache compared to a relational sql database.

Here is a great white paper on it.

Also a great free open source object database can be found here.
Рекомендации по теме
Комментарии
Автор

If this was how relation databases worked no one would use them. For starters, there are things called indexes.

coyotedarkon
Автор

You explained the lookup process in relational, but then made the lookup in object oriented so fluffy. How is the "path" to the node found? It's not magic and needs to find the 9999 still, somehow.

JonathanKoscik
Автор

relational databases have indexing for keys (such as the account number) so lookup in these tables is far more more efficient and fast than what had been described!
undermines the credability of the entire video

ofircarmel
Автор

Jamie, there is always sequential reading. There is no magic. You have to read what's in a file. The system doesn't know anything unless the reading is done. Comparison takes place AFTER this has happened, not before. Caché databases are plain old files filled with arrays that contain "pointers" to other arrays. This technique is fast but also has some disadvantages that Caché doesn't want to talk about.

AlMayer
Автор

Thank you for the effort to post.
Can you tell me what is the difference between an object mode and a hierarchical one?
Thanks

technolojesus
Автор

Thanks for your effort, it's really easy to understand.

WangJet
Автор

Dude I like your explanation, its short and straight to the point. I'm a student and its very key for me to pick up the quick benefits and understand what makes it unique so I can continue on with my school work lol. Good Job Man!

slhoward
Автор

How would you Like to work with a FULLY FUNCTIONAL OODB.. ? Exabyte single instance storage 100x sql performance.. and only 6 instructions. ?

JeanMichelLetennierVirtuedesk
Автор

This is how a little boy understood what some grownups were talking about. I wonder if and how much damage this can do to a person preparing for a database related job interview.

Pete
Автор

well, from the OO point of view its a good idea because you don't have to implement an ORM layer, but usually companies don't rely much on OO databases, is very odd replace relational model for OO because its works well more than 40 years... Oracle is hard to be bet in production these days.

LambdaPool
Автор

Does the cache driver use 16, 32, 64 or 128 bit addressing mode?

gemsinfopress
Автор

Is this explanation is more about Object Oriented Relational Database Engagement System O-ORDBMS rather than Object Relational Database Engagement System ORDBMS? Can you explain the differnt between these two concepts

AliGazala
Автор

Why query optimization in ORDBMS is a challenge?

debabratasikder
Автор

Thank You for the video 😍 It was very helpful

geethikaisurusampath
Автор

thanks for putting valuable effort to share your knowledge in a layman language. Just wanted to tell you that incomplete knowledge may create negative perception about the concept, you should not represent concept of a system as magic.

SonuKumar-lzds
Автор

How does it find account 9999 without looking to see which is it? There are still a lot of accounts and it needs to know the one to go to.

PrescottComputerGuy
Автор

Thanks for your effort, But i believe the concept can be explained more officially. :)

samor
Автор

If you are looking for a free open source object database, I suggest using globalsdb. I posted a link in my comments above.

ljprevo
Автор

I have now idee how objekt oriententet databses work, but I can clearly see you nether have an idea who relational databses nor computers work.
Information with the same ID is always stored in one tables. multiple are only needet when you have differnet objekts you want to relate together.
It is not posible for a computer to "not look at the outhers." couse it does not know where it is. that does not make sence

asdanjer
Автор

Look at my vid again and look at the node, "Account(9999, 3, 1) Lets say I want to find every account that is a doctor. I would create a FOR loop to look at that node only. i.e. If "Account(*, 3, 1)" if piece #1 = "Doctor" it will grab that particular account #, then I can take that account # and search all the other node for other data for that particular account.

ljprevo