Friday, March 2, 2012

Re: Mysql Performance

is your app an HR app? (it should be).
what are the app  & instance names?

jm.




Hello!

I have a simple table called "tbl_languages"

tl_id smallint unsigned not null primary_key auto_increment
tl_key varchar(45) not null UNIQUE
tl_short_key varchar(5) not null UNIQUE
tl_description text
tl_supported boolean not null default false

INSERT INTO tbl_languages (tl_key, tl_short_key, tl_supported)
VALUES ('german', 'de', true);

In the Google Api Console I get a 3-4ms for "SELECT * FROM tbl_languages" but in the GAE I get 80-100ms.
Is the connection between my GAE App and the Mysql Database so slow?

Thanks for help!

No comments:

Post a Comment