X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FManual%2FTroubleshooting.pod;h=d7045bc4e413dd8e42bb0f7ff2d18176c73b328b;hb=5d22bb74b308ad7ca28cedd1ffcfd92c106b1e68;hp=e3b1ab3818f98b60cd4ee7a8cb861cebda270c47;hpb=8423891f882417dd1f97ca5ef1effd929d624147;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Manual/Troubleshooting.pod b/lib/DBIx/Class/Manual/Troubleshooting.pod index e3b1ab3..d7045bc 100644 --- a/lib/DBIx/Class/Manual/Troubleshooting.pod +++ b/lib/DBIx/Class/Manual/Troubleshooting.pod @@ -23,7 +23,7 @@ To send the output somewhere else set debugfh:- $schema->storage->debugfh(IO::File->new('/tmp/trace.out', 'w'); -Alternatively you can do this with the environment variable too:- +Alternatively you can do this with the environment variable, too:- export DBIC_TRACE="1=/tmp/trace.out" @@ -51,9 +51,8 @@ L version 1.50 and L 1.43 are known to work. There's likely a syntax error in the table class referred to elsewhere in this error message. In particular make sure that the package -declaration is correct, so for a schema C< MySchema > you need to -specify a fully qualified namespace: C< package MySchema::MyTable; > -for example. +declaration is correct. For example, for a schema C< MySchema > +you need to specify a fully qualified namespace: C< package MySchema::MyTable; >. =head2 syntax error at or near "" ... @@ -72,7 +71,7 @@ database, e.g. "user": ... __PACKAGE__->table('acl'); __PACKAGE__->add_columns(qw/ user_id /); - __PACKAGE__->belongs_to( 'user' => 'My::Schema::User', 'user_id' ); + __PACKAGE__->refers_to( 'user' => 'My::Schema::User', 'user_id' ); ... 1; @@ -97,31 +96,23 @@ up with the following errors: 2) syntax error at or near "user" - due to "user" in the JOIN clause The solution is to enable quoting - see -L for +L for details. -Note that quoting may lead to problems with C clauses, see -L<... column "foo DESC" does not exist ...> for info on avoiding those. - =head2 column "foo DESC" does not exist ... -This can happen if you've turned on quoting and then done something like -this: +This can happen if you are still using the obsolete order hack, and also +happen to turn on SQL-quoting. $rs->search( {}, { order_by => [ 'name DESC' ] } ); -This results in SQL like this: - - ... ORDER BY "name DESC" - -The solution is to pass your order_by items as scalar references to avoid -quoting: - - $rs->search( {}, { order_by => [ \'name DESC' ] } ); +Since L >= 0.08100 and L >= 1.50 the above +should be written as: -Now you'll get SQL like this: + $rs->search( {}, { order_by => { -desc => 'name' } } ); - ... ORDER BY name DESC +For more ways to express order clauses refer to +L =head2 Perl Performance Issues on Red Hat Systems @@ -141,20 +132,31 @@ with full current updates will not be subject to this problem):- Fedora 8 - perl-5.8.8-41.fc8 RHEL5 - perl-5.8.8-15.el5_2.1 -The issue is due to perl doing an exhaustive search of blessed objects +This issue is due to perl doing an exhaustive search of blessed objects under certain circumstances. The problem shows up as performance -degredation exponential to the number of L row objects in -memory, so can be unoticeable with certain data sets, but with huge +degradation exponential to the number of L result objects in +memory, so can be unnoticeable with certain data sets, but with huge performance impacts on other datasets. -A pair of tests for susceptability to the issue, and performance effects +A pair of tests for susceptibility to the issue and performance effects of the bless/overload problem can be found in the L test -suite in the file C +suite, in the C file. Further information on this issue can be found in L, L and L +=head2 Excessive Memory Allocation with TEXT/BLOB/etc. Columns and Large LongReadLen + +It has been observed, using L, that creating a L +object which includes a column of data type TEXT/BLOB/etc. will allocate +LongReadLen bytes. This allocation does not leak, but if LongReadLen +is large in size, and many such result objects are created, e.g. as the +output of a ResultSet query, the memory footprint of the Perl interpreter +can grow very large. + +The solution is to use the smallest practical value for LongReadLen. + =cut