vote up -4 vote down star

This question is hard to describe without Latex. I am still working on it, please, be patient. Thanks to vog for solving most initial questions.

Why am I designing a functional data-structure?

Small is better than big. I want to remove all unnecesary interfaces, perhaps removing additional risk of SQL-injecttions. You can see the critical part of the structure here. It should be simple as possible to implement with some functional language, such as Haskell.

Some still unsolved questions emerged from the functional question

  1. Is it possible to deduce meta expressions in Lambda Calculus from the UML diagram?
  2. Is there some better tool to illustrate the functional structure, rather than UML?

Old VS New

Related Posts:

  1. Inefficient and too complex data structure in my old post
flag

2 Answers

vote up 0 vote down

Let's assume we have a scale. One end has One True Lookup Table (OTLT), while the other has Entity-Attribute Value (EAV).

Your tables are largely at the OTLT -side one the scale. Your tables have severe weakness. Your table does NOT have foreign key constraints to protect your data integrity.

You will have anomalies with deletion, insertion and update.


In conclusion, your table seems to be a confusion of logical and physical database models. You use physical model notations for threads, while you use logical notations at tables.

I do not think that it is a good idea to mix these two models.

Please, read this post.

Please, paste this to your browser too

http://www.google.fi/url?&ei=qe5tSpHOFIaQsAau2pGcBw&sig2=8obaUuyUanmzCOY5TKvmoQ&q=http://www.cs.gsu.edu/~cscbecx/3360%2520DateBase%2520Fall%25202008/Chapter%25202.ppt&ei=qe5tSpHOFIaQsAau2pGcBw&sa=X&oi=define&ct=&cd=1&usg=AFQjCNFyftwbqeBG_iPXvPfNr50z7IKxjw

link|flag
This reply is not the op. Jeff integrated the accounts, so the question got very confusing. Sorry, but it not our fault. – Masi Aug 24 at 8:48
vote up 2 vote down
  1. Add a "parent" link to the class itself.

  2. Yes.

  3. Yes, but an integer constrained to {-1,1} would be a good idea, too.

link|flag
You mean like: files.getdropbox.com/u/175588/… – Masi Jul 26 at 19:20
2  
Maybe you should make more clear what you mean with a "stacks-inside-stacks data structure" – vog Jul 26 at 19:26
I agree with vog. @Simple: You can have only tables. Stacks must be in tables. -- There is no point in having this string a,b,c,d,e,f,g inside one cell. --- Guess what problems arise when you need to append one more value to your stack: you need to find the cell, open the cell, then find the end of the cell, and then finally add your new value to the cell with a new comma. --- It would be much more efficient to have the data in separate tables. --- I see that "a stack in a stack" is your abbreviation in signaling a relation between two items. – Masi Jul 26 at 20:21
@Masi: Reusing ready data structures is efficient. Computational complexity of a one-dimensional stack is O(n). For two-dimensinal stack "table", it is O(n^2). The Posts-table has a PostContents-attribute, a three-dimensinal stack, where the db is the bottleneck. By using "tables", I cannot see how things become different. Tables are still just stacks, and if you like, I am using tables because of stacks. It is just much more easier to extend the project with concise plan. If you like, please have a look at my later posts where you can see more tables. – Masi Jul 26 at 20:55
1  
@SimpleThings: Your arguments about complexity are very strange. First, the ERM (or class diagram) doesn't say much about complexity. In fact, its aim is to provide a good model and solve the performance issues separately. Second, by setting and tuning database indexes you have a fine control about the modify/query performance behaviour without changing the model in any way. The question whether a class diagram would perform well is completely misguided and indicates a fundamental lack of understanding. – vog Jul 26 at 22:21
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.