Subject | Re: [ib-support] Re: MySQL Query Cache |
---|---|
Author | Jarkko Soikkeli |
Post date | 2003-02-10T10:12:56Z |
When you are using same query with different parameters you should
consider using prepare
http://php.benscom.com/manual/en/function.ibase-prepare.php
and execute in PHP.
http://php.benscom.com/manual/en/function.ibase-execute.php
It speeds a lot.
dvanatta wrote:
Jarkko Soikkeli
consider using prepare
http://php.benscom.com/manual/en/function.ibase-prepare.php
and execute in PHP.
http://php.benscom.com/manual/en/function.ibase-execute.php
It speeds a lot.
dvanatta wrote:
> --- In ib-support@yahoogroups.com, Lester Caine <lester@l...> wrote:--
>
>>>What is the MySQL Query Cache?
>>>Query Cache is an intelligent MySQL feature, which allows to
>>
> greatly
>
>>>improving the speed of the frequently executed queries by
>>
> caching
>
>>>query response and returning it to the client instead of real
>>
> query
>
>>>execution.
>>
>>IBObjects does that for all enquiries on Ib and FB <g>
>>
>
> Isn't IBObjects a Delphi only tool? I use PHP so it won't help me.
> Is there anything equivalent for PHP?
>
>
>
> To unsubscribe from this group, send an email to:
> ib-support-unsubscribe@egroups.com
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
Jarkko Soikkeli