D
D
deleted-mezhevikin2011-02-08 10:37:30
PHP
deleted-mezhevikin, 2011-02-08 10:37:30

Alternatives to DbSimple

I have been using DbSimple in my projects for a year now , but for highly loaded projects I would like something faster. What do you advise?

Answer the question

In order to leave comments, you need to log in

7 answer(s)
D
DevMan, 2011-02-08
@deleted-mezhevikin

PDO - nowhere faster, and convenient.

G
gro, 2011-02-08
@gro

Typically, the layer creates a completely negligible load compared to the request itself.
From DbSimple alternatives: pyha.ru/go/godb/ , code.google.com/p/go-db/

S
sajgak, 2011-02-08
@sajgak

For highload it is desirable to use pure SQL queries. Of course, a small layer for convenience is needed ... ala $this->db->query(); $this->db->escape()… But anything more than that is redundant. And in general, in highly loaded projects, it is better to abandon the muscle)

P
pav, 2011-02-09
@pav

Are there any measurements/figures that prove that DbSimple will be a bottleneck in loaded projects?

D
developer, 2011-04-23
@developer

Yes, I have never seen anything better than select *, id AS ARRAY_KEY from table where 1 {and field=?d} I would also like to see a modern analogue, or someone would rewrite this one.

O
ozon, 2011-04-23
@ozon

dibiphp.com/

J
Jazzist, 2011-02-09
@Jazzist

SQLite.
Simple, fast, convenient. I am responsible for the market!
If you use it through a layer (which is always reasonable) - you will be happy too :)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question