Very nice! Do you have benchmarks to share?
David Roth
On Wed, Jul 18, 2012 at 3:00 PM, Woh Roh wrote:
> Hi Everyone,
> Just to give an update on this old topic, I 'regained' performance on my
> php application by eliminating all calls to the old mysql connector (I was
> using it for the array_
Hi Everyone,
Just to give an update on this old topic, I 'regained' performance on my
php application by eliminating all calls to the old mysql connector (I was
using it for the array_map(mysql_real_escape_string($x) functionality).
Also to measure performance I created test scripts that run throu
This is an area where a flexible document database like MongoDB makes things a
lot simpler. One document stores all of the configuration for the form and one
collection can hold submissions with any variation of dynamic fields in them.
This post from NYTimes was inspiration to me a couple years
It depends.
For dynamic form I prefer to use 3 tables
form(form_id,name,action)
field(field_id,form_id,name,type : [text,textarea,checkbox,select ... ],
default,validation : [required,max=,min=,email,numeric,alphanumeric ... ],
option ), option say if the value are coming from field_value, another
I prefer to create a "settings" table where I store all the bits and pieces
that need to be configurable but are not that frequently changed.
If you want to make everything translatable, I would not tie it to a
settings table but rather set up a global translate procedure that would
apply to these