Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
"Choose the Right Language" in "Tutorial" by Norvig and Pitman
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 26 - 50 of 75 - Collapse all  -  Translate all to Translated (View all originals) < Older  Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Kenny Tilton  
View profile  
 More options Apr 13 2002, 3:41 pm
Newsgroups: comp.lang.lisp
From: Kenny Tilton <ktil...@nyc.rr.com>
Date: Sat, 13 Apr 2002 19:39:36 GMT
Local: Sat, Apr 13 2002 3:39 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

>   When you imply that being able to use a tool is equivalent to grasping
>   the theory, ...

As if! I wrote and meant:

KT> Oh, gosh, no, theory is way out of my league.

Theory is a crutch for too-smart folks who cannot hear the problem
describing its own solution. The noise of their own intellects deafens
them.

Just kidding, I wish I was smart enough to follow the deeper comp sci
stuff, but I am not. The point of what I wrote is that I think it says
something pretty deep about theory that I am too dumb to understand it
but do great without it.

My theory is that theory is cool, but better answers come from listening
to the problem.

--

 kenny tilton
 clinisys, inc
 ---------------------------------------------------------------
"Harvey has overcome not only time and space but any objections."
                                                        Elwood P. Dowd


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kenny Tilton  
View profile  
 More options Apr 13 2002, 4:03 pm
Newsgroups: comp.lang.lisp
From: Kenny Tilton <ktil...@nyc.rr.com>
Date: Sat, 13 Apr 2002 20:01:05 GMT
Local: Sat, Apr 13 2002 4:01 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

"Christopher C. Stacy" wrote:
> I like object databases, but except for the tiny little market
> penetration of ODI (last time I looked was 4 years ago),
> basically nobody was using object databases.

Well, the penetration of pure ODB is not much changed, but XML could be
the killer app for ODB. Native XML systems like XIS from Excelon (ne
ODI) kicks RDB's theoretical butt. Oracle is dusting off their ODB
project (started when ODB gave them a brief scare, tabled when ODB fell
by the wayside) to support native XML

re pure ODB: We are using AStore atop ObjectStore, having a ball with
it.

Versant is another ODB vendor offering stuff for Java.

--

 kenny tilton
 clinisys, inc
 ---------------------------------------------------------------
"Harvey has overcome not only time and space but any objections."
                                                        Elwood P. Dowd


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Apr 13 2002, 8:08 pm
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.net>
Date: Sun, 14 Apr 2002 00:08:23 GMT
Local: Sat, Apr 13 2002 8:08 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
* Kenny Tilton <ktil...@nyc.rr.com>
| My theory is that theory is cool, but better answers come from listening
| to the problem.

  The theory is the result of listening to the problem.  When the theory
  acquires a life of its own because some people like it more than the real
  world, all kinds of uninspiring, uninteresting things happen, so the key
  is _both_ to listen to the problem and to study the theory.  But always
  remember that just as much theory is bunk as there are buggy solutions.
  There is nothing more wrong with "theory" than "solutions" -- both their
  quality and their applicability are orthogonal to their existence.

///
--
  In a fight against something, the fight has value, victory has none.
  In a fight for something, the fight is a loss, victory merely relief.

  Post with compassion: http://home.chello.no/~xyzzy/kitten.jpg


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christopher Browne  
View profile  
 More options Apr 14 2002, 4:17 pm
Newsgroups: comp.lang.lisp
From: Christopher Browne <cbbro...@acm.org>
Date: Sat, 13 Apr 2002 13:41:07 -0400
Local: Sat, Apr 13 2002 1:41 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
The world rejoiced as cr88192 <cr88...@hotmail.com> wrote:

Most typically, "OODB" systems provide a not-at-all-veiled scheme for
allowing C++ or Java objects to be treated as "persistent."

Immediately upon choosing "OODB," that means that you have chosen to
use a particular language, and have to _start_ the process by defining
the base data-storing C++/Java classes.

If that's not a "lockstep" process, I don't know what is.

SQL/RDBMS at least has the merit of being separate enough from any
specific programming language that code and data don't merge
_completely_ invisibly.  

It's ugly in different ways.

CORBA is another useful thing to look at, despite not being a data
_storage_ system; it's a characteristic scheme for _communications_
that immediately points to the same sorts of issues.  

Another endpoint there would be to consider that the original
implementation of M$ COM was essentially a light serialization of M$
Visual C++ objects; it was somewhat convenient for communicating
between "components," assuming that all code would be written using
Visual C++.

CORBA is pretty ugly because you're always having to do work to push
arguments into the CORBA marshalling scheme; that's ugly more or less
the same way that SQL is.  COM was "nicer," assuming that you're happy
with living with One True Language, and in _starting_ by tying down
how data gets moved around to however VC++ "marshalls" it given its
druthers.

More recent COM releases have moved towards being more like CORBA;
other schemes like SOAP may use XML underneath but are otherwise much
the same, requiring doing a bunch of work to transform "local" data
into some "marshalled" form.

Stepping back to Lisp...

On the one hand, Lisp ought to be a somewhat nicer language to do
CORBA-like stuff with, what with having a bit more reflectivity than
C/C++/Java.  That bodes well for "playing well" with SQL RDBMSes.
You're still suffering from the need to do a lot of "marshalling;" no
real way around that problem.

On the other hand, you could build a nice "OODB" system atop Lisp,
too; it would be equally likely suffer from roughly the same problems
as the other OODB systems, unfortunately.

In a sense, there's not a _fundamental_ difference betwixt Lisp and
its competitors here...
--
(reverse (concatenate 'string "ac.notelrac.teneerf@" "454aa"))
http://www.ntlug.org/~cbbrowne/nonrdbms.html
As of next Wednesday, CLU will be flushed in favor of SNOBOL.
Please update your programs.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
cr88192  
View profile  
 More options Apr 15 2002, 1:08 am
Newsgroups: comp.lang.lisp
From: cr88192 <cr88...@hotmail.com>
Date: Sun, 14 Apr 2002 22:09:07 -0400
Local: Sun, Apr 14 2002 10:09 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

sorry for not knowing about oodbs, I didn't know they were *that* kludgy, I
had figured that they just defined a "general" object format and used that.

> SQL/RDBMS at least has the merit of being separate enough from any
> specific programming language that code and data don't merge
> _completely_ invisibly.

> It's ugly in different ways.

well, and the fact that data is referenced by queries, and not "hard"
references...
still ugly.

I don't think either is really good myself, I think I before mailed my
oppinion to someone about a "better" distributed system, as in my mind
rpc-ish mechanisms are crappy...

> Stepping back to Lisp...

> On the one hand, Lisp ought to be a somewhat nicer language to do
> CORBA-like stuff with, what with having a bit more reflectivity than
> C/C++/Java.  That bodes well for "playing well" with SQL RDBMSes.
> You're still suffering from the need to do a lot of "marshalling;" no
> real way around that problem.

> On the other hand, you could build a nice "OODB" system atop Lisp,
> too; it would be equally likely suffer from roughly the same problems
> as the other OODB systems, unfortunately.

> In a sense, there's not a _fundamental_ difference betwixt Lisp and
> its competitors here...

I could use "my" model, as I think it is reasonably general.
I will not describe it now on account of this keyboard (dvorak is numbing
my head...).

ok fixed, felt penned qwerty letters on top of keys and changed back to
qwerty layout for now. seems my mind is fubarred for now...

--
<cr88...@hotmail.com> <http://bgb1.hypermart.net/>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kenny Tilton  
View profile  
 More options Apr 15 2002, 12:19 pm
Newsgroups: comp.lang.lisp
From: Kenny Tilton <ktil...@nyc.rr.com>
Date: Mon, 15 Apr 2002 16:16:09 GMT
Local: Mon, Apr 15 2002 12:16 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

Christopher Browne wrote:
> Immediately upon choosing "OODB," that means that you have chosen to
> use a particular language, and have to _start_ the process by defining
> the base data-storing C++/Java classes.

I am puzzled. I start my projects anyway by deciding on a particular
language and designing the DB schema whether I am using RDB, ODB, or
ISAM. Where's the problem?

> If that's not a "lockstep" process, I don't know what is.

If I choose Lisp and a CLOS ODB, I can change my schema while the app is
running. If that is lockstep, I do not know what is not. If I choose a
native XML database, I can go after the data with any number of
languages.

But one thing is certain: RDB cannot directly store OO-based data,
meaning an OO app has to transform the data to read or write it. That
alone proves RDB is Deeply Wrong. It had its day, but it just does not
scale semantically.

--

 kenny tilton
 clinisys, inc
 ---------------------------------------------------------------
"Harvey has overcome not only time and space but any objections."
                                                        Elwood P. Dowd


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mark Dalgarno  
View profile  
 More options Apr 15 2002, 1:01 pm
Newsgroups: comp.lang.lisp
From: Mark Dalgarno <Mark_Dalga...@scientia.com>
Date: 15 Apr 2002 17:53:48 +0100
Local: Mon, Apr 15 2002 12:53 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

Kenny Tilton <ktil...@nyc.rr.com> writes:
> But one thing is certain: RDB cannot directly store OO-based data,
> meaning an OO app has to transform the data to read or write it. That
> alone proves RDB is Deeply Wrong. It had its day, but it just does not
> scale semantically.

"Relational Databases considered harmful" at

http://linux.rice.edu/~rahul/hbaker/letters/CACM-RelationalDatabases....

covered similar ground 11 years ago.

Mark


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Todd Gillespie  
View profile  
 More options Apr 15 2002, 6:25 pm
Newsgroups: comp.lang.lisp
From: Todd Gillespie <to...@linux128.ma.utexas.edu>
Date: Mon, 15 Apr 2002 22:16:03 +0000 (UTC)
Local: Mon, Apr 15 2002 6:16 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
Kenny Tilton <ktil...@nyc.rr.com> wrote:

: Well, the penetration of pure ODB is not much changed, but XML could be
: the killer app for ODB. Native XML systems like XIS from Excelon (ne
: ODI) kicks RDB's theoretical butt. Oracle is dusting off their ODB
: project (started when ODB gave them a brief scare, tabled when ODB fell
: by the wayside) to support native XML

Native XML is of stunningly little use.  The 'theory' behind it is back in
1960's hierachical databases, although after a few more years you might
get to the point of '70s network databases, but I doubt it.

Of course, 'XML' is now an umbrella term for a dizzying array of
ever-bifurcating standards and proposals, so saying a database is 'native
XML' doesn't tell me anything except that I'm in trouble.  Concurrent to
this, XML is changing fast enough to doom any projects I write with a
'native XML' DB to being rewritten every couple years.

Problem 3 is that 'get next record' in a relational DB means 'add the
offset to this pointer and read from the memmap'ed file'; with 'native
XML' that means 'break out the parser, rip through a few megs of text, and
build a tree to walk through'.  Good news for hardware manufacturers, not
so good news for me.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Todd Gillespie  
View profile  
 More options Apr 15 2002, 7:15 pm
Newsgroups: comp.lang.lisp
From: Todd Gillespie <to...@linux128.ma.utexas.edu>
Date: Mon, 15 Apr 2002 23:11:19 +0000 (UTC)
Local: Mon, Apr 15 2002 7:11 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
Kenny Tilton <ktil...@nyc.rr.com> wrote:

:>  My problem with OODBs is that they are a giant step backwards from
:> relational

: Nah, ODB is a superset of RDB.

Prove it.  I'm entirely open to the idea.

:> designing your datastore in lockstep with
:> your application,

: to a degree, yes. but if one likes OO, ODB only makes sense. And RDB
: looks like a dinosaur.

If you are designing a single-user backend to a single application, then
yes, OODBs are an excellent solution to persisting data in the same format
your single application will use it in.

If, on the other hand, you are planning on running a large datasource to
several programs written in different languages, with many users using in
simultaneously, then a normalized relational database with a common
language-independent query form like SQL may be more of what you need to
allow interoperation and avoid corruption.

You might want to rely less on how things look, and more how they operate
under strain.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Todd Gillespie  
View profile  
 More options Apr 15 2002, 7:23 pm
Newsgroups: comp.lang.lisp
From: Todd Gillespie <to...@linux128.ma.utexas.edu>
Date: Mon, 15 Apr 2002 23:18:45 +0000 (UTC)
Local: Mon, Apr 15 2002 7:18 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
cr88192 <cr88...@hotmail.com> wrote:

: if anyone cares I came up with an idea that I consider a hybrid (but not
: like the nutorious o-rdbs).
: main highlights: it still refers to things with relations (actually more
: with "predicates"),

: it supports variable structures (a weak I consider of
: the relational model).

That's not a failure of the relational model, it's the failure of SQL
databases as currently implemented.  Postgres is working out some of the
issues with 'domains', as objects are called in RDBMS-land; but most
vendors haven't exposed enough functionality to allow users to define new
object types and derive all the comparison functions you need to use them
conditionally in queries.

: it uses a prototyping object system (actually my
: version of a prototyping object system).

What do you mean by that?

: other more misc stuff.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bijan Parsia  
View profile  
 More options Apr 15 2002, 8:37 pm
Newsgroups: comp.lang.lisp
From: Bijan Parsia <bpar...@email.unc.edu>
Date: Mon, 15 Apr 2002 20:37:07 -0400
Local: Mon, Apr 15 2002 8:37 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

On Mon, 15 Apr 2002, Todd Gillespie wrote:
> cr88192 <cr88...@hotmail.com> wrote:
[snip]
> : it uses a prototyping object system (actually my
> : version of a prototyping object system).

> What do you mean by that?

[snip]

My guess: the person meant a "prototype" based object system, a la Self,
Newtonscript, or Javascript. To wit, there are no classes (rather, an
object isn't primarily an instance of a class). The primary mechanism for
creating objects is clone rather than new (and instantiation).

There's a lot of neat things you can do with prototype object systems, and
for a lot of tasks they're *very* nice to use.

Cheers,
Bijan Parsia.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rahul Jain  
View profile  
 More options Apr 15 2002, 10:00 pm
Newsgroups: comp.lang.lisp
From: Rahul Jain <rj...@sid-1129.sid.rice.edu>
Date: 15 Apr 2002 20:56:38 -0500
Local: Mon, Apr 15 2002 9:56 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

Todd Gillespie <to...@linux128.ma.utexas.edu> writes:
> Kenny Tilton <ktil...@nyc.rr.com> wrote:
> :>  My problem with OODBs is that they are a giant step backwards from
> :> relational

> : Nah, ODB is a superset of RDB.

> Prove it.  I'm entirely open to the idea.

You can write a relational engine using an object system. QED.

Really all you need to write is a B+-tree implementation where the
OODBMS guarantees that the nodes are memory page (or disk block)
sized. Actually, some OODBMSes come with indicies already. The hardest
part would probably be writing the language interface for the
relational operators.

--
-> -/                        - Rahul Jain -                        \- <-
-> -\  http://linux.rice.edu/~rahul -=-  mailto:rj...@techie.com   /- <-
-> -/ "Structure is nothing if it is all you got. Skeletons spook  \- <-
-> -\  people if [they] try to walk around on their own. I really  /- <-
-> -/  wonder why XML does not." -- Erik Naggum, comp.lang.lisp    \- <-
|--|--------|--------------|----|-------------|------|---------|-----|-|
   (c)1996-2002, All rights reserved. Disclaimer available upon request.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Todd Gillespie  
View profile  
 More options Apr 15 2002, 11:25 pm
Newsgroups: comp.lang.lisp
From: Todd Gillespie <to...@linux128.ma.utexas.edu>
Date: Tue, 16 Apr 2002 03:15:22 +0000 (UTC)
Local: Mon, Apr 15 2002 11:15 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
Rahul Jain <rj...@sid-1129.sid.rice.edu> wrote:

: Todd Gillespie <to...@linux128.ma.utexas.edu> writes:
:> Prove it.  I'm entirely open to the idea.

: You can write a relational engine using an object system. QED.

: Really all you need to write is a B+-tree implementation where the
: OODBMS guarantees that the nodes are memory page (or disk block)
: sized. Actually, some OODBMSes come with indicies already. The hardest
: part would probably be writing the language interface for the
: relational operators.

In that case, the proof would lie in actually writing said code.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rahul Jain  
View profile  
 More options Apr 16 2002, 1:50 am
Newsgroups: comp.lang.lisp
From: Rahul Jain <rj...@sid-1129.sid.rice.edu>
Date: 16 Apr 2002 00:43:31 -0500
Local: Tues, Apr 16 2002 1:43 am
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

Todd Gillespie <to...@linux128.ma.utexas.edu> writes:
> Rahul Jain <rj...@sid-1129.sid.rice.edu> wrote:
> : Todd Gillespie <to...@linux128.ma.utexas.edu> writes:
> :> Prove it.  I'm entirely open to the idea.

> : You can write a relational engine using an object system. QED.

> In that case, the proof would lie in actually writing said code.

Good, that's the trivial part (since someone else already did it).
Look at any RDBMS. Now express the data structures it uses as "true"
objects (feel free to use a custom metaclass :).

--
-> -/                        - Rahul Jain -                        \- <-
-> -\  http://linux.rice.edu/~rahul -=-  mailto:rj...@techie.com   /- <-
-> -/ "Structure is nothing if it is all you got. Skeletons spook  \- <-
-> -\  people if [they] try to walk around on their own. I really  /- <-
-> -/  wonder why XML does not." -- Erik Naggum, comp.lang.lisp    \- <-
|--|--------|--------------|----|-------------|------|---------|-----|-|
   (c)1996-2002, All rights reserved. Disclaimer available upon request.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
cr88192  
View profile  
 More options Apr 16 2002, 2:14 am
Newsgroups: comp.lang.lisp
From: cr88192 <cr88...@hotmail.com>
Date: Mon, 15 Apr 2002 23:14:34 -0400
Local: Mon, Apr 15 2002 11:14 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

yep, this is what I meant.
sorry if I messed up the terms (but as far as I know both are correct...).

I would just call it a prototyping object system except that some details I
consider my own (as initially I had thought it up and discovered later that
it allready existed). my design involves "specific"/"inspecific" objects,
which have slightly different behaviors (though it could probably get along
without the difference, but I figure the difference will make things a
little easier to optimize...).

I will describe my general idea for my objects as applied to a db:
inspecific objects can not be modified;
objects (specific) may be placed in sets;
the structure of objects in a set is restriced by compatibility objects
(inspecific) or predicates;
inversly the compatibility objects/predicates are to hold for all objects
in a set;
objects in a set are referred to by their fields or by keys (not written:
or on compatibility with a query predicate);
soft references will consist of a set reference and a query predicate;
sets may be placed in other sets however the parent set may restrict if it
may contain sets (and the structure of the sets);
sets will be considered objects;
hard references may be disallowed for interobject references.

worth noting: objects are considered as residing in sets, but not part of
the sets; inversly, fields in objects are considered parts of the objects.

from what little I have read I think my design will be a little different
than self (I have not looked at newtonscript or javascript).

at some point I will have to write down how I imagine the object system.

if anyone knows more about what I am talking about than I do then tips
might be helpfull...

--
<cr88...@hotmail.com> <http://bgb1.hypermart.net/>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kenny Tilton  
View profile  
 More options Apr 16 2002, 2:51 am
Newsgroups: comp.lang.lisp
From: Kenny Tilton <ktil...@nyc.rr.com>
Date: Tue, 16 Apr 2002 06:48:09 GMT
Local: Tues, Apr 16 2002 2:48 am
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

Todd Gillespie wrote:
> Native XML is of stunningly little use.

Chya. I guess that is why Oracle is in such a panic to declare they do
native XML. (Don't tell me I have to go find the link to ORCL for you.)

> Of course, 'XML' is now an umbrella term for a dizzying array of
> ever-bifurcating standards and proposals

oh shit, don't tell me there is a new technology which might be going
thru some polishing!!! run way! run away!!!...the difference between an
adventure and a disaster is the attitude you take into it

>  Concurrent to
> this, XML is changing fast enough to doom any projects I write with a
> 'native XML' DB to being rewritten every couple years.

your projects--if they cannot be ported from RDB or XML to ISAM or GKW
in a week--get thrown out anyway every couple of years.

> Problem 3 is that 'get next record' in a relational DB means 'add the
> offset to this pointer and read from the memmap'ed file';

chya. so you have RDB code at great expense creating the /illusion/ of
"add the offset". This is a terribly intellectually dishonest assertion.
apologize to c.l.l. imediately. (doing my best erik imitation.)

> with 'native
> XML' that means 'break out the parser, rip through a few megs of text, and
> build a tree to walk through'.

ok, thx for clarifying that you know nothing about native XML. (DMBEI)

>  Good news for hardware manufacturers, not
> so good news for me.

uh, aside from the fact that you are wrong, the hardware folks are
upping their performance so fast that not even Moore's law can keep up.
How /you/ doin'?

based on what I have heard, RDb is an excuse for two ignorances:

(1) I do not know what language to use. (answer: duhhhhhhh, lisp!!!)

(2) I do not know what index I will want tomorrow at 3PM (answer: don't
quit your day job.)

--

 kenny tilton
 clinisys, inc
 ---------------------------------------------------------------
"Harvey has overcome not only time and space but any objections."
                                                        Elwood P. Dowd


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Frode Vatvedt Fjeld  
View profile  
 More options Apr 16 2002, 3:46 am
Newsgroups: comp.lang.lisp
From: Frode Vatvedt Fjeld <fro...@acm.org>
Date: Tue, 16 Apr 2002 09:46:41 +0200
Local: Tues, Apr 16 2002 3:46 am
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

Rahul Jain <rj...@sid-1129.sid.rice.edu> writes:
> You can write a relational engine using an object system. QED.

By the same argument, for example Basic is a superset of Common
Lisp. I don't know if that means anything.

--
Frode Vatvedt Fjeld


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bijan Parsia  
View profile  
 More options Apr 16 2002, 8:31 am
Newsgroups: comp.lang.lisp
From: Bijan Parsia <bpar...@email.unc.edu>
Date: Tue, 16 Apr 2002 08:20:22 -0400
Local: Tues, Apr 16 2002 8:20 am
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

On Mon, 15 Apr 2002, cr88192 wrote:
> Bijan Parsia wrote:

[snip]
> > My guess: the person meant a "prototype" based object system, a la Self,
> > Newtonscript, or Javascript. To wit, there are no classes (rather, an
> > object isn't primarily an instance of a class). The primary mechanism for
> > creating objects is clone rather than new (and instantiation).

> yep, this is what I meant.
> sorry if I messed up the terms (but as far as I know both are correct...).

[snip]

FWIW, I don't recall *ever* seeing "prototyping object system" before, and
I've read the Self papers, programming Newtons, and studied Javascript (to
my dismay). So, even if "correct", "prototyping" is nonstandard, or,
at least, likely to provoke some confusion.

Plus, you lose symatry with "class based object system". And there's a
problem that a class based object system can be a "prototyping" object
system for a fairly natural reading of the phrase (i.e., Smalltalk may be
a prototyping object system (ick) because it supports, like Lisp, rapid,
flexible prototyping of applications).

Cheers,
Bijan Parsia.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "RDB vs ODB" by Kenny Tilton
Kenny Tilton  
View profile  
 More options Apr 16 2002, 11:52 am
Newsgroups: comp.lang.lisp
From: Kenny Tilton <ktil...@nyc.rr.com>
Date: Tue, 16 Apr 2002 15:50:04 GMT
Local: Tues, Apr 16 2002 11:50 am
Subject: RDB vs ODB
Now that I have changed the subject line, yikes, what's the point? May
as well try to settle multiple vs single inheritance.

Todd Gillespie wrote:

> Kenny Tilton <ktil...@nyc.rr.com> wrote:
> :>  My problem with OODBs is that they are a giant step backwards from
> :> relational

> : Nah, ODB is a superset of RDB.

> Prove it.  I'm entirely open to the idea.

I can do rows 'n columns in ODB, I cannot do inheritance in RDB.

> If, on the other hand, you are planning on running a large datasource to
> several programs written in different languages, with many users using in
> simultaneously,

true, true, but I do not think that gets to ODB vs RDB, that is an
accident of where the technologies happen to stand today.

I like ODB precisely for its tight linking to the language; it takes the
whole DB thang and says, look, we're just making instances persistent.
To a degree the DB is transparent. That makes development easier, and
nothing is more important. Hardware is cheap, performance can be dealt
with later (as a rule--not agreeing ODBs are slower).

--

 kenny tilton
 clinisys, inc
 ---------------------------------------------------------------
"Harvey has overcome not only time and space but any objections."
                                                        Elwood P. Dowd


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to ""Choose the Right Language" in "Tutorial" by Norvig and Pitman" by Todd Gillespie
Todd Gillespie  
View profile  
 More options Apr 16 2002, 12:35 pm
Newsgroups: comp.lang.lisp
From: Todd Gillespie <to...@linux128.ma.utexas.edu>
Date: Tue, 16 Apr 2002 16:33:52 +0000 (UTC)
Local: Tues, Apr 16 2002 12:33 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
Kenny Tilton <ktil...@nyc.rr.com> wrote:
: Todd Gillespie wrote:

:> Native XML is of stunningly little use.

: Chya. I guess that is why Oracle is in such a panic to declare they do
: native XML. (Don't tell me I have to go find the link to ORCL for you.)

You can find all the links you want.  I guess that would really impress
me, since I've been using Oracle's XML Java stored procs to pull XML out
of Oracle since 1999.
It's also fairly absurd to try to use "this big company is doing
something" as a definitive data point in favor of 'something'.  Big
Companies have lots and lots of engineers; they can run lots and lots of
projects concurrently.  This lets them use projects for marketing
purposes, but you are a fool if you think that everything else they are
doing just got shelved in favor of the one thing they sold you on.

XML is a structed application interchange format.  It is not an
intra-application storage format -- apps will always specialize their
backends.

:> Of course, 'XML' is now an umbrella term for a dizzying array of
:> ever-bifurcating standards and proposals

: oh shit, don't tell me there is a new technology which might be going
: thru some polishing!!! run way! run away!!!...the difference between an
: adventure and a disaster is the attitude you take into it

And yet, that isn't a unmitigated win.  So it's hard to argue with fervor
in favor of a tool used where it is inappropriate just on the grounds of
"maybe it will get better in another decade".

: your projects--if they cannot be ported from RDB or XML to ISAM or GKW
: in a week--get thrown out anyway every couple of years.

I can't figure out if this is a silly ad hominum or just poor grammar.
Maybe it's the viewpoint of someone used to very small projects.

:> Problem 3 is that 'get next record' in a relational DB means 'add the
:> offset to this pointer and read from the memmap'ed file';

: chya. so you have RDB code at great expense creating the /illusion/ of
: "add the offset". This is a terribly intellectually dishonest assertion.

If you leave fantasyland and learn to think in disk blocks, operations,
and memory allocation, you'll change your mind.

:> with 'native
:> XML' that means 'break out the parser, rip through a few megs of text, and
:> build a tree to walk through'.

: ok, thx for clarifying that you know nothing about native XML. (DMBEI)

Once again, you brush aside a valid point with an ad hominum attack.  Will
you ever bring content to the table?

:>  Good news for hardware manufacturers, not
:> so good news for me.

: uh, aside from the fact that you are wrong, the hardware folks are
: upping their performance so fast that not even Moore's law can keep up.
: How /you/ doin'?

My hardware is fine, thank you.  But I still like to support as many users
per processer as I can.  If you support bloat, more power to you.  By the
way, which platform are you on?  I need to buy some stock.

: based on what I have heard, RDb is an excuse for two ignorances:

: (1) I do not know what language to use. (answer: duhhhhhhh, lisp!!!)

: (2) I do not know what index I will want tomorrow at 3PM (answer: don't
: quit your day job.)

You sir, are trolling.  Next thread, please, nothing to see here.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Apr 16 2002, 1:17 pm
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.net>
Date: Tue, 16 Apr 2002 17:17:39 GMT
Local: Tues, Apr 16 2002 1:17 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
* Todd Gillespie

> Of course, 'XML' is now an umbrella term for a dizzying array of
> ever-bifurcating standards and proposals

* Kenny Tilton
| oh shit, don't tell me there is a new technology which might be going
| thru some polishing!!! run way! run away!!!...the difference between an
| adventure and a disaster is the attitude you take into it

  Would you mind trying to act a bit more intelligent?

| chya. so you have RDB code at great expense creating the /illusion/ of
| "add the offset". This is a terribly intellectually dishonest assertion.
| apologize to c.l.l. imediately. (doing my best erik imitation.)

  Try imitating something within your reach, first, like a dog.

| uh, aside from the fact that you are wrong, the hardware folks are upping
| their performance so fast that not even Moore's law can keep up.

  Are you sure you have figured out what Moore's law says?

| How /you/ doin'?

  Less slang, more intelligibility, please.

| based on what I have heard, RDb is an excuse for two ignorances:
|
| (1) I do not know what language to use. (answer: duhhhhhhh, lisp!!!)
|
| (2) I do not know what index I will want tomorrow at 3PM (answer: don't
| quit your day job.)

  So you _have_ no clue.  I hate it when people confirm my suspicions.

  People who think object-orientation is so great, have generally failed to
  grasp the value of data-driven designs despite the serious attempt at
  making such design easier to model, and think solely in terms of code-
  driven designs where their class hierarchies are poor adaptations to
  their incompetent coding styles.  This is extremely depressing, as the
  interminable "software crisis" is a result of code-driven design.  SGML
  and XML were attempts at promoting data-driven design that would produce
  data that was _supposedly_ indepedent of any application.  The result is
  that people who have so little clue they should have attracted one simply
  by the sucking power of vacuum do code-driven designs in XML, which is
  _really_ retarded, and then they need to store their moronically designed
  data in databases, which is, of course, too hard given their braindamaged
  designs, so the relational model does not "work" for them.

///
--
  In a fight against something, the fight has value, victory has none.
  In a fight for something, the fight is a loss, victory merely relief.

  Post with compassion: http://home.chello.no/~xyzzy/kitten.jpg


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kenny Tilton  
View profile  
 More options Apr 16 2002, 4:46 pm
Newsgroups: comp.lang.lisp
From: Kenny Tilton <ktil...@nyc.rr.com>
Date: Tue, 16 Apr 2002 20:43:21 GMT
Local: Tues, Apr 16 2002 4:43 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman

What about the new XMLType in 9i? I saw this InfoWorld story:

http://www.infoworld.com/articles/hn/xml/01/11/30/011130hnoraclexdb.xml

<start>
"Oracle to boost XML, Web services support

By Mark Leon and Tom Sullivan
November 30, 2001 6:18 am PT

ORACLE SAYS IT will raise the bar in XML database and Web services
support next week at the Oracle OpenWorld conference in San Francisco.

The buzz surrounds Oracle's XDB project that the company reports will
utilize the object database functions it built in the mid-90s that allow
users to store XML as an object and index the tags, then stored it in a
compressed table.

...

As for the advantages of XDB, Burton explained that XML documents are
stored "natively" but will not require special treatment. "You can use
SQL, and don't need to master the new XML query languages like XQuery,"
Burton said.

"The object technology that makes this possible was a hammer looking for
a nail," Burton said, "and XML is suddenly the biggest nail on the
planet. If XML had not come along, you could argue that a lot of our
object development efforts were wasted effort."

"With XDB," Burton continued, "the overhead of managing XML, parsing for
example, largely disappears."
<end>

Agreed, Oracle is not the oracle on anything, but I think it's a fun
data point. The article actually goes on quite a bit more, mentioning
IBM, Tamino and XML Global (native XML). No mention of Excelon, tho.

> XML is a structed application interchange format.  It is not an
> intra-application storage format -- apps will always specialize their
> backends.

I am toying with porting our Franz AllegroStore "intra-app storage" to
XIS (made by Excelon ne ODI). Both AStore and XIS sit on top of
Excelon's ObjectStore.

Did your group look at XIS at all? The 9i XMLType? Of the latter, at
http://oracle.oreilly.com/news/oracleessential_0701.html they say:
"XMLType eliminates the need to parse the documents coming into and out
of the database."

--

 kenny tilton
 clinisys, inc
 ---------------------------------------------------------------
"Harvey has overcome not only time and space but any objections."
                                                        Elwood P. Dowd


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Golden  
View profile  
 More options Apr 16 2002, 5:49 pm
Newsgroups: comp.lang.lisp
From: David Golden <qnivq.tby...@bprnaserr.arg>
Date: Tue, 16 Apr 2002 21:49:53 GMT
Local: Tues, Apr 16 2002 5:49 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
XML: a triumph of hype over sanity.

The sad thing about XML is that it's a pretty trivial uglification of lisp
sexps.  Sure, they approached the problem space from a different direction,
but, as usual, they've reinvented-the-wheel, poorly.

"Oooh no, lisp has too many parentheses, let's represent our
pretty-bog-standard tree structures with incredibly verbose syntax
featuring redundant* close tags and angle brackets everywhere... I think
that's much better than parens, don't you?"

"No."

*XML's nesting rules mean that any well-formed xml fragment does not
overlap tags (no <x>hello <y>there</x>, world</y>). Thus, using XML gains
you essentially nothing over just using sexps for the same data (unless
you're stuck talking to M$'s or other sundry XML-weenies'  systems).  While
it may sometimes look/feel like you're marking up a stream of text when you
use XML, you're not, really  XML is just building humdrum tree structures.

(if XML were a proper markup language, you'd be able to overlap tags and
all sorts of things - markup should notionally be a layer of "highlighter
pen" on top of the text stream - the XMLers started forgetting that, and
thinking their tags were more important than the text, and manage, through
the woeful DOM, to thoroughly mix up their "markup" (ha!) and text...).

So, XML is  an annoying way of writing down data structures that lispers
have been dealing with (usually much more sensibly) since time immemorial.  
  That's why the average lisp programmer, confronted with XML,
tends to think "this seems a bit silly", even if he can't put his finger on
why.

In may 10 or 20 years time, the Java and XML crowd will probably have
reinvented most of Lisp, badly...

broken-record-mode:
See http://ssax.sourceforge.net for a nice  XML-to-scheme specification.

--
Don't eat yellow snow.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dan Andreatta  
View profile  
 More options Apr 16 2002, 6:10 pm
Newsgroups: comp.lang.lisp
From: Dan Andreatta <andrea...@mail.chem.sc.edu.REMOVEME>
Date: 16 Apr 2002 16:11:13 -0700
Local: Tues, Apr 16 2002 7:11 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
David Golden <qnivq.tby...@bprnaserr.arg> wrote in
news:501v8.3767$04.12055@news.iol.ie:

> In may 10 or 20 years time, the Java and XML crowd will probably have
> reinvented most of Lisp, badly...

You mean that XML will evolve to

<SETQ> X <LAMBDA> <ARG>A B</ARG> <PLUS>A B</PLUS> </LAMBDA> </SETQ>

Wow, I can't wait :-/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rahul Jain  
View profile  
 More options Apr 16 2002, 6:20 pm
Newsgroups: comp.lang.lisp
From: Rahul Jain <rj...@sid-1129.sid.rice.edu>
Date: 16 Apr 2002 17:14:14 -0500
Local: Tues, Apr 16 2002 6:14 pm
Subject: Re: "Choose the Right Language" in "Tutorial" by Norvig and Pitman
Frode Vatvedt Fjeld <fro...@acm.org> writes:

> Rahul Jain <rj...@sid-1129.sid.rice.edu> writes:

> > You can write a relational engine using an object system. QED.

> By the same argument, for example Basic is a superset of Common
> Lisp. I don't know if that means anything.

That would mean that a CL interpreter written in Basic would operate
similarly (in terms of performance) to a native compiler, and that the
native compiler couldn't have a Basic interpreter that operated
similarly (in terms of performance). So that analogy doesn't make much
sense.

Relational DBMSes do lookup by _search_, not by reference. The engine
inside the RDBMS does lookup by reference to implement the lookup by
search. An object-oriented system does lookup by reference as well.

--
-> -/                        - Rahul Jain -                        \- <-
-> -\  http://linux.rice.edu/~rahul -=-  mailto:rj...@techie.com   /- <-
-> -/ "Structure is nothing if it is all you got. Skeletons spook  \- <-
-> -\  people if [they] try to walk around on their own. I really  /- <-
-> -/  wonder why XML does not." -- Erik Naggum, comp.lang.lisp    \- <-
|--|--------|--------------|----|-------------|------|---------|-----|-|
   (c)1996-2002, All rights reserved. Disclaimer available upon request.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 26 - 50 of 75 < Older  Newer >
« Back to Discussions « Newer topic     Older topic »