Thursday, March 1, 2012

Mysql Performance

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