Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Disapointed by the speed of the db backend ...
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 1 - 25 of 54 - Expand all  -  Translate all to Translated (View all originals)   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
 
manatlan  
View profile  
(1 user)  More options Apr 11 2008, 10:06 pm
From: manatlan <manat...@gmail.com>
Date: Fri, 11 Apr 2008 19:06:49 -0700 (PDT)
Local: Fri, Apr 11 2008 10:06 pm
Subject: Disapointed by the speed of the db backend ...
I planned to migrate a python app ... but my tests on google engine
was really bad, compare to sqlite or mysql.
I had just make a model for "users", with 4 fields, which can have
zero-to-many marks in another model "marks" with 3 fields.
And try to get the higher, the lower and the average mark for each
user.
It is really really slow, on appspot.com, compare to a real db where
it could done in one select (select max(mark), min(mark),
avg(mark) ...)
(i filled my db with 40 users which have each one 10 marks)

- is there a trick to do this with datastore, without parsing all
data ?

ok, i'm pretty sure that a page could be served at the same speed for
a australia boy, or a french boy ... but I asked myself if a can do
better ? (index are well defined), where can I be wrong ?!


    Reply to author    Forward  
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.
Lee O  
View profile  
 More options Apr 12 2008, 12:52 am
From: "Lee O" <lee...@gmail.com>
Date: Fri, 11 Apr 2008 21:52:15 -0700
Local: Sat, Apr 12 2008 12:52 am
Subject: Re: [google-appengine] Disapointed by the speed of the db backend ...

I have yet to do, or even see any speed tests by a majority. I think most of
us assumed this would just be very very fast...

Can we get any official word on this? Are the servers slower in the beta
phase than the intended release speed?

--
Lee Olayvar
http://www.leeolayvar.com

    Reply to author    Forward  
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.
Brett Morgan  
View profile  
 More options Apr 12 2008, 1:52 am
From: "Brett Morgan" <brett.mor...@gmail.com>
Date: Sat, 12 Apr 2008 15:52:16 +1000
Local: Sat, Apr 12 2008 1:52 am
Subject: Re: [google-appengine] Disapointed by the speed of the db backend ...
Instead of calculating the results at query time, caculate them when
you are adding the records. This means that displaying the results is
just a lookup, and that the calculation costs are amortised over each
record addition.


    Reply to author    Forward  
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.
manatlan  
View profile  
 More options Apr 12 2008, 3:43 am
From: manatlan <manat...@gmail.com>
Date: Sat, 12 Apr 2008 00:43:02 -0700 (PDT)
Local: Sat, Apr 12 2008 3:43 am
Subject: Re: Disapointed by the speed of the db backend ...

> Instead of calculating the results at query time, caculate them when
> you are adding the records.

of course I had thought at that .... and if I migrate my app, I will
need to do that ... sure.
But I simple asked why it's too slow than another db, for this kind of
needs.
and if there are tricks to replace avg(), min(), max()

    Reply to author    Forward  
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.
Brett Morgan  
View profile  
(8 users)  More options Apr 12 2008, 4:02 am
From: "Brett Morgan" <brett.mor...@gmail.com>
Date: Sat, 12 Apr 2008 18:02:31 +1000
Local: Sat, Apr 12 2008 4:02 am
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...

On Sat, Apr 12, 2008 at 5:43 PM, manatlan <manat...@gmail.com> wrote:

>  > Instead of calculating the results at query time, caculate them when
>  > you are adding the records.

>  of course I had thought at that .... and if I migrate my app, I will
>  need to do that ... sure.
>  But I simple asked why it's too slow than another db, for this kind of
>  needs.
>  and if there are tricks to replace avg(), min(), max()

It might look almost look like a sql db when you squint, but it's
optimised for a totally different goal. If you think that each
different entity you retrieve could be retrieving a different disk
block from a different machine in the cluster, then suddenly things
start to make sense. avg() over a column in a sql server makes sense,
because the disk accesses are pulling blocks in a row from the same
disk (hopefully), or even better, all from the same ram on the one
computer. With DataStore, which is built on top of BigTable, which is
built on top of GFS, there ain't no such promise. Each entity in
DataStore is quite possibly a different file in gfs.

So if you build things such that web requests are only ever pulling a
single entity from DataStore - by always precomputing everything -
then your app will fly on all the read requests. In fact, if that
single entity gets hot - is highly utilised across the cluster - then
it will be replicated across the cluster.

Yes, this means that everything that we think we know about building
web applications is suddenly wrong. But this is actually a good thing.
Having been on the wrong side of trying to scale up web app code, I
can honestly say it is better to push the requirements of scaling into
the face of us developers so that we do the right thing from the
beginning. It's easier to solve the issues at the start, than try and
retrofit hacks at the end of the development cycle.

brett


    Reply to author    Forward  
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.
flashpad  
View profile  
 More options Apr 12 2008, 4:36 am
From: flashpad <pablono...@gmail.com>
Date: Sat, 12 Apr 2008 01:36:58 -0700 (PDT)
Local: Sat, Apr 12 2008 4:36 am
Subject: Re: Disapointed by the speed of the db backend ...
could you re-explain this in just a little bit simpler english?

On Apr 12, 1:02 am, "Brett Morgan" <brett.mor...@gmail.com> wrote:


    Reply to author    Forward  
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.
dimrub  
View profile  
(1 user)  More options Apr 12 2008, 5:38 am
From: dimrub <dim...@gmail.com>
Date: Sat, 12 Apr 2008 02:38:53 -0700 (PDT)
Local: Sat, Apr 12 2008 5:38 am
Subject: Re: Disapointed by the speed of the db backend ...
On Apr 12, 11:02 am, "Brett Morgan" <brett.mor...@gmail.com> wrote:

> Yes, this means that everything that we think we know about building
> web applications is suddenly wrong. But this is actually a good thing.
> Having been on the wrong side of trying to scale up web app code, I
> can honestly say it is better to push the requirements of scaling into
> the face of us developers so that we do the right thing from the
> beginning. It's easier to solve the issues at the start, than try and
> retrofit hacks at the end of the development cycle.

This is all very fine, however, consider that many of the sites are
not meant (and most probably never will) serve more than a few
hundreds hits per day, and for them to be basically redeveloped using
this frame of mind is impractical. But also consider, that, according
to a small test I've run, it takes GAE almost 3 seconds to save in the
datastore a miserable 50 of dummy records (consisting of just 2 text
fields). This means, for example, that my application, that
occasionally needs to create several hundreds of records upon a single
hit, just won't work - it hits the time limit appointed to a single
hit, and just fails.

    Reply to author    Forward  
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.
Lee O  
View profile  
 More options Apr 12 2008, 9:31 am
From: "Lee O" <lee...@gmail.com>
Date: Sat, 12 Apr 2008 06:31:42 -0700
Local: Sat, Apr 12 2008 9:31 am
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...

..ouch, :/

--
Lee Olayvar
http://www.leeolayvar.com

    Reply to author    Forward  
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.
barryhunter  
View profile  
 More options Apr 12 2008, 11:06 am
From: barryhunter <BarryBHun...@googlemail.com>
Date: Sat, 12 Apr 2008 08:06:21 -0700 (PDT)
Local: Sat, Apr 12 2008 11:06 am
Subject: Re: Disapointed by the speed of the db backend ...
This might be a very naive observation, but I perhaps wonder then if
GAE is the tool for you.

As I see it the App Engine is for applications that are meant to
scale, scale and really scale. Sounds like an application with a few
hundred hits daily could easily run on traditional hosting platforms.

It's a completely different mindset.

On Apr 12, 10:38 am, dimrub <dim...@gmail.com> wrote:


    Reply to author    Forward  
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.
Lee O  
View profile  
 More options Apr 12 2008, 12:05 pm
From: "Lee O" <lee...@gmail.com>
Date: Sat, 12 Apr 2008 09:05:58 -0700
Local: Sat, Apr 12 2008 12:05 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...

Very true.

Myself, i use it as a nice Python host ;P

On Sat, Apr 12, 2008 at 8:06 AM, barryhunter <BarryBHun...@googlemail.com>
wrote:

--
Lee Olayvar
http://www.leeolayvar.com

    Reply to author    Forward  
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.
Randy Johnson  
View profile  
 More options Apr 12 2008, 1:02 pm
From: "Randy Johnson" <program...@cfconcepts.com>
Date: Sat, 12 Apr 2008 13:02:02 -0400
Local: Sat, Apr 12 2008 1:02 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...

I don't think that is really the point.  The overall point is the speed of
the Db right?  He has a couple hundred hits at the click of a button now and
is complaining about the speed... What about someone who has several
thousand / hundred thousand or even millions...

-Randy

On Sat, Apr 12, 2008 at 11:06 AM, barryhunter <BarryBHun...@googlemail.com>
wrote:


    Reply to author    Forward  
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.
barryhunter  
View profile  
 More options Apr 12 2008, 3:33 pm
From: barryhunter <BarryBHun...@googlemail.com>
Date: Sat, 12 Apr 2008 12:33:14 -0700 (PDT)
Local: Sat, Apr 12 2008 3:33 pm
Subject: Re: Disapointed by the speed of the db backend ...
Again maybe I am missing something, but the datastore isnt designed to
be super fast at the small scale, but rather handle large amounts of
data, and be distributed. (and because its distributed it can appear
very fast at large scale)

So you break down your database access into very simple processes.
Assume your database acess is VERY slow, and rethink how you do
things. (Of course the peice in the puzzle 'we' are missing is
MapReduce! - the 'processing' part of the BigTable mindset)

On Apr 12, 6:02 pm, "Randy Johnson" <program...@cfconcepts.com> wrote:


    Reply to author    Forward  
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.
DennisP  
View profile  
(1 user)  More options Apr 12 2008, 6:52 pm
From: DennisP <DennisBPeter...@gmail.com>
Date: Sat, 12 Apr 2008 15:52:53 -0700 (PDT)
Local: Sat, Apr 12 2008 6:52 pm
Subject: Re: Disapointed by the speed of the db backend ...
Hmm, don't know that I'd go quite that far....scalability is important
but it would also be nice for our web pages to be fast.

It's nice that a page will be no slower with a million users than with
one user, but if "no slower" means "it will still take 4 seconds
serverside" that's a little less satisfying.

On Apr 12, 3:33 pm, barryhunter <BarryBHun...@googlemail.com> wrote:


    Reply to author    Forward  
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.
Brett Morgan  
View profile  
 More options Apr 12 2008, 7:59 pm
From: "Brett Morgan" <brett.mor...@gmail.com>
Date: Sun, 13 Apr 2008 09:59:03 +1000
Local: Sat, Apr 12 2008 7:59 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...
And how long does it take to save one record with two lists of 50 numbers?


    Reply to author    Forward  
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.
Brett Morgan  
View profile  
 More options Apr 12 2008, 8:01 pm
From: "Brett Morgan" <brett.mor...@gmail.com>
Date: Sun, 13 Apr 2008 10:01:16 +1000
Local: Sat, Apr 12 2008 8:01 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...
Can you come up with some questions? I don't understand what you don't
understand. So if you can begin by telling me a bit of a story about
where you are at, understanding wise, I'll start tailoring for you.
Help me here =)


    Reply to author    Forward  
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.
Brett Morgan  
View profile  
(1 user)  More options Apr 12 2008, 8:07 pm
From: "Brett Morgan" <brett.mor...@gmail.com>
Date: Sun, 13 Apr 2008 10:07:20 +1000
Local: Sat, Apr 12 2008 8:07 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...
On Sun, Apr 13, 2008 at 3:02 AM, Randy Johnson

<program...@cfconcepts.com> wrote:
> I don't think that is really the point.  The overall point is the speed of
> the Db right?  He has a couple hundred hits at the click of a button now and
> is complaining about the speed... What about someone who has several
> thousand / hundred thousand or even millions...

> -Randy

Remember what GFS and BigTable were originally designed for. Each
BigTable entry contained a whole web page, and all the data relating
to that web page as the various stages of the google processing
pipeline are applied to the page. So storing two numbers in a BigTable
entry is like putting a person in a 747, then complaining how long it
takes to get the person 50 feet along the ground in said 747 - it
would be quicker to get the person to walk.

The power of BigTable comes to the fore when you fill the 747 with
people, fire up the engines, and then get the aircraft to cruising
altitude. That's when you are using the tool properly.


    Reply to author    Forward  
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.
Brett Morgan  
View profile  
 More options Apr 12 2008, 8:10 pm
From: "Brett Morgan" <brett.mor...@gmail.com>
Date: Sun, 13 Apr 2008 10:10:15 +1000
Local: Sat, Apr 12 2008 8:10 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...
On Sun, Apr 13, 2008 at 5:33 AM, barryhunter

<BarryBHun...@googlemail.com> wrote:

>  Again maybe I am missing something, but the datastore isnt designed to
>  be super fast at the small scale, but rather handle large amounts of
>  data, and be distributed. (and because its distributed it can appear
>  very fast at large scale)

The large chunks of data is the important bit. Much much larger than
traditional rdbms rows. By several hundred orders of magnitude.

>  So you break down your database access into very simple processes.
>  Assume your database acess is VERY slow, and rethink how you do
>  things. (Of course the peice in the puzzle 'we' are missing is
>  MapReduce! - the 'processing' part of the BigTable mindset)

Oh what i'd do to have access to MapReduce.

    Reply to author    Forward  
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.
Brett Morgan  
View profile  
(2 users)  More options Apr 12 2008, 8:13 pm
From: "Brett Morgan" <brett.mor...@gmail.com>
Date: Sun, 13 Apr 2008 10:13:20 +1000
Local: Sat, Apr 12 2008 8:13 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...

On Sun, Apr 13, 2008 at 8:52 AM, DennisP <DennisBPeter...@gmail.com> wrote:

>  Hmm, don't know that I'd go quite that far....scalability is important
>  but it would also be nice for our web pages to be fast.

>  It's nice that a page will be no slower with a million users than with
>  one user, but if "no slower" means "it will still take 4 seconds
>  serverside" that's a little less satisfying.

I know it's going to sound glib, but if it is taking four seconds to
render a page, you are using the tool wrong.

What we have to do here is together, as a group, start to explore all
the ways of using this toolset, and come up with best practices on how
to do things. So yes, seeing things like "it takes X seconds to save Y
records" is important. It starts to give us all a feel for how not to
do things.

But the next step is important. Exploring how to use it, instead of
getting depressed that our initial attempts are wrong. We will keep at
it until we get it.


    Reply to author    Forward  
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.
DennisP  
View profile  
 More options Apr 12 2008, 8:15 pm
From: DennisP <DennisBPeter...@gmail.com>
Date: Sat, 12 Apr 2008 17:15:31 -0700 (PDT)
Local: Sat, Apr 12 2008 8:15 pm
Subject: Re: Disapointed by the speed of the db backend ...
Definitely agree with that...a wiki with best practices might be a
good idea...

On Apr 12, 8:13 pm, "Brett Morgan" <brett.mor...@gmail.com> wrote:


    Reply to author    Forward  
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.
Brett Morgan  
View profile  
 More options Apr 12 2008, 8:16 pm
From: "Brett Morgan" <brett.mor...@gmail.com>
Date: Sun, 13 Apr 2008 10:16:37 +1000
Local: Sat, Apr 12 2008 8:16 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...
Yup yup. Where can we host one? Can we build one on top of jotspot or something?


    Reply to author    Forward  
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.
Lee O  
View profile  
(2 users)  More options Apr 12 2008, 8:40 pm
From: "Lee O" <lee...@gmail.com>
Date: Sat, 12 Apr 2008 17:40:14 -0700
Local: Sat, Apr 12 2008 8:40 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...

Why not use an app for it. :)

(by the way, loving the discussion guys :)

On Sat, Apr 12, 2008 at 5:16 PM, Brett Morgan <brett.mor...@gmail.com>
wrote:

--
Lee Olayvar
http://www.leeolayvar.com

    Reply to author    Forward  
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.
Brett Morgan  
View profile  
 More options Apr 12 2008, 8:46 pm
From: "Brett Morgan" <brett.mor...@gmail.com>
Date: Sun, 13 Apr 2008 10:46:13 +1000
Local: Sat, Apr 12 2008 8:46 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...
Bwahahaha

Why didn't i see that one coming? =)


    Reply to author    Forward  
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.
PatrickNegri  
View profile  
(1 user)  More options Apr 12 2008, 8:49 pm
From: PatrickNegri <patrickne...@gmail.com>
Date: Sat, 12 Apr 2008 17:49:00 -0700 (PDT)
Subject: Re: Disapointed by the speed of the db backend ...
Heya guys.

I have did some tests about the speed issues you guys talking about.
What i suggest, at first, is to read some Search Engines paper,
regarding boolean operators and search algs.

Some things i have noticed:
     * AppEngine Database model seens to be based on inverted indexes
     * You only have AND operator
     * Each additional query its a perfomance issue

The overall perfomance, for search, its fast, i am doing some local
tests to compare to other search engines i have writed/supported and
speed seens good. Currently doing a test with 1 million records. Will
post bench later, need some additional data yet.

One thing i must say, the appengine database model is VERY different
from conventional relational and sqls, you must think the way search
engines think.

For example, knowing that we dont have an "OR" operator, i have
implemented the following way:
        1. Query DB with first term
        2. Query DB with second term
        3. Merge Sort the two itens based on relevancy (Do your own
calculations if necessary)

I am pretty happy with the results.

But, when you create something like 'manatlan', the speed will be a
issue, because he designed the DB as a Relational Database, with joins
and on query calculations.

In general, you can explain a query in mySQL for example and
reimplement the steps in your script. Like i said, the BigTable is a
BASE model.

The approach of Brett Morgan is the way you need to think, but, a good
approach would be something like that:
        1. Ignore your USERS model for the moment, you dont need to do
any select at this table
        2. Do a query in Marks model, get topK or top100K records
        3. Using a user function, do a data range select, using ifs
and merges to create a result
        4. Sort the result array the way you like
        5. Use it to get the top 10,20,30 users from result

I would like to hear what you guys think and any other ideas.

PS: Sorry for english, Brazil here.

Patrick Negri

On Apr 12, 8:16 pm, "Brett Morgan" <brett.mor...@gmail.com> wrote:


    Reply to author    Forward  
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.
PatrickNegri  
View profile  
 More options Apr 12 2008, 9:15 pm
From: PatrickNegri <patrickne...@gmail.com>
Date: Sat, 12 Apr 2008 18:15:30 -0700 (PDT)
Local: Sat, Apr 12 2008 9:15 pm
Subject: Re: Disapointed by the speed of the db backend ...
Also, i must say something about Insert speed.

Yes, its slow. Very slow compared to mySql, but, you cant compare ;).

I  dont know exactly how the indexes work behind the scenes, but i
hope it works the way google indexes works (Any Google Engineer here
to help us on this?).

If the indexes work like this:
       * Each time a record is added, new term is weighted and added
to inverted index.
       * This could explain the slow insert time, because we are
adding + indexing
       * The inverted index is something like a pre-made "search".

For those that dont know what inverted indexes are:

Supose you have 2 docs.
DocID 1 => The cat is king
DocID 2 => I have bought food for my cat today.

Now, in indexes, you have some lexicon:
1.  the, 2. cat, 3. is, 4. king, 5. i, 6. have, 7. bought, 8. food, 9.
for, 10. my, 11. today

Using this, we create inverted indexes for each lexicon, example:
Lexicon "cat" => TermID = 3
DocID(1),1 // DocID 1 has 1 hit for this
DocID(2),1 // DocID 2 has 1 hit for this (Also, here another question,
how the relevancy alg is calculated, i dont think AppEngine is a
exacly match of google indexes, but, if i have 2 hits, the DocID goes
up?)

Now, you guys can see why the search is faster. When you search, a
lookup for termID is done, then you can access a list of hits,
instantly. Because this its very efficient on searchers. Now imagine
the insert, its a bit tricky and i would imagine why its a bit slow.

Any Google Engineers here to answer these questions about indexes?

Regards
Patrick


    Reply to author    Forward  
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.
Brett Morgan  
View profile  
 More options Apr 12 2008, 9:17 pm
From: "Brett Morgan" <brett.mor...@gmail.com>
Date: Sun, 13 Apr 2008 11:17:27 +1000
Local: Sat, Apr 12 2008 9:17 pm
Subject: Re: [google-appengine] Re: Disapointed by the speed of the db backend ...
From what i have read, i believe indexes are remade on each insert.

And no, I'm not a google engineer.


    Reply to author    Forward  
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 1 - 25 of 54   Newer >
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google