| CPAN Ratings (Gamma) Reviews by Johan Lindström | |
| Home | Search | About | Login |
RSS | Module Info | Add a review of
2 out of 2 found this review helpful:
Nice, easy to use module.
Enable it, run your program and it will list classes and object counts for live objects (i.e. not garbage collected ones) on exit.
I used it to find a memory leak in Devel::Cover. While it was simple to see wich objects were still alive, this module won't help you find out the root cause, i.e. where the circular dependencies are. But you can always just Dump one of the objects. Given the classes, you can probably figure out what a proper root object would be.
Possible improvements:
* list ref count of each class or even object, maybe limited per class, so you can see where the leak is.
Johan Lindström - 2008-05-30 09:00:49
Was this review helpful to you?
Yes
No
The best kind of interface -- i.e. no interface.
The only thing the docs could use is a mention whether "use bigint" is lexical or global, but it seems lexical from the examples.
(The reason I'm even anxious about this is I recall other similar modules that affected global behaviour.)
Johan Lindström - 2008-01-03 09:35:16
Was this review helpful to you?
Yes
No
Solves the problem well, in a very usable manner.
The documentation is slightly code-oriented and could do with a little bit better introduction to the problem domain.
Johan Lindström - 2006-05-12 02:31:04
Was this review helpful to you?
Yes
No
A real lifesaver the few occations when you have two large pieces of text that don't match and you need to find out exactly how.
I especially like the way newlines is indicated as \n in the diff. That, and other convenient touches, makes this module stand out.
Johan Lindström - 2006-05-04 05:11:46
Was this review helpful to you?
Yes
No
Wow!
Simply the easiest-to-use front end to DBI.
If you're planning on write SQL yourself instead of using one of the ORM modules (CDBI, DBIx::Class, Rose::DB etc.), this is the interface you want to use.
Johan Lindström - 2005-12-13 16:48:53
Was this review helpful to you?
Yes
No
Does one thing and does it well.
The only bad thing about the docs are the negative numbers in the example in the SYNOPSIS, that's just distracting.
Johan Lindström - 2005-08-24 01:41:25
Was this review helpful to you?
Yes
No
Pragmatic automation. No, wait, that's a book. Ok, it's also what this module is about.
Johan Lindstr�m - 2005-02-22 10:36:42
Was this review helpful to you?
Yes
No
Create a graphical representation of the inheritance tree of a module.
Very easy to use, but I miss a simple command line script to point to a directory of modules.
Johan Lindstr�m - 2005-01-12 09:59:22
Was this review helpful to you?
Yes
No
No tests. Um... no makefile? Did install but then didn't work because of missing dependencies.
Instead I ended up using... Acme::JavaTrace :)
Johan Lindstr�m - 2005-01-10 04:33:03
Was this review helpful to you?
Yes
No
The only gripe I have with this module is the name, since I know this design pattern under the name "Null object" rather than "Null class". Maybe the docs could at least mention that.
Other than that: well done!
Johan Lindstr�m - 2004-12-29 01:59:10
Was this review helpful to you?
Yes
No
One of those bread-and-butter modules that are simply there for you when you realize you need Perl to reach into yet another domain.
Johan Lindstr�m - 2004-12-28 05:41:04
Was this review helpful to you?
Yes
No
It does what it says. In a good way.
The sub names could have been more in line with e.g. Test::Exception, but it works.
Johan Lindstr�m - 2004-10-12 11:52:31
Was this review helpful to you?
Yes
No
Very good at what it does (pronouce time in English).
Very simple to use.
Can be a nice touch.
Johan Lindstr�m - 2004-08-19 12:51:33
Was this review helpful to you?
Yes
No
Devel::Profile dumps per-subroutine execution statistics during or after the program run.
One of the profilers that actually works.
Johan Lindstr�m - 2004-07-18 11:26:05
Was this review helpful to you?
Yes
No
One of the preferred modules for creating standard getter/setter methods, among other things. There are a number of modules for doing that, this one works well.
Johan Lindstr�m - 2004-07-15 05:17:16
Was this review helpful to you?
Yes
No
Useful when some module with a poor API needs a file handle and all you've got is a string.
Johan Lindstr�m - 2004-07-15 05:13:42
Was this review helpful to you?
Yes
No
Strong points of DBI:
* it's the de facto standard in Perl, focusing database development.
* a unified interface for connectivity, basic activities (and somewhat for capabilities), making it almost-not-a-nightmare to switch between database backends (but then there's always the specific syntax, semantics and concepts of different databases for anything non-trivial... *sigh*)
* it's stable and mature with countless hours in production.
* nice API.
* huge amounts of additions and utilities in the DBIx namespace, built on top of DBI. Not to mention Class::DBI.
Johan Lindstr�m - 2004-07-15 05:04:30
Was this review helpful to you?
Yes
No
Interface: simple and powerful.
Johan Lindstr�m - 2004-06-29 14:37:32
Was this review helpful to you?
Yes
No
Database abstraction at an extremely productive level.
Lots of declarative logic and lots of under-the-cover smarts, hiding the boring and repetitive parts from you.
Some of the croak error messages could be a bit more helpful, and possibly not croak at the level _above_ where you are coding.
Johan Lindstr�m - 2004-06-28 02:04:55
Was this review helpful to you?
Yes
No
Plot values over time. Add one or more series of time + value datapoints and this module will make a pretty chart with most things automatically the way you want it; Axis comments, grids, time etc.
Johan Lindstr�m - 2004-06-17 02:11:04
Was this review helpful to you?
Yes
No
Excellent module! If you need some kind of "tail -f" in your program, this is what you want. Being able to use non-blocking selects on many files (or in my case, building a tailing server) is extra nice.
The documentation could use a little more work for the methods, which parameters they take, examples etc.
The module appears to work just fine under Win32 despite the failing tests (I suspect DOS/Unix line feed problems).
Johan Lindstr�m - 2004-06-12 08:18:40
Was this review helpful to you?
Yes
No
For when the options on the command line just become too many or too long to keep on the command line. Put them in a file and include them. Recursively if need be. Excellent extension to @ARGV parsing modules.
Johan Lindstr�m - 2004-04-28 12:41:20
Was this review helpful to you?
Yes
No
Manage ZIP files easily. It took me fifteen minutes from "I need to put that directory tree into a zip file" and I had a working solution.
Good synopsis, good FAQ.
Johan Lindstr�m - 2004-04-27 07:21:32
Was this review helpful to you?
Yes
No
Excellent functionality for when you want to pass around specific information in a die(). The $@ is still stringified in a useful way.
Easy-to-use API for defining your own exceptions.
Johan Lindstr�m - 2004-04-12 16:51:42
Was this review helpful to you?
Yes
No
Very, very useful for testing database contents.
I found the various ways to specify the SQL query to be overly complex for my taste. I pass in simple SQL strings instead.
Johan Lindstr�m - 2004-04-07 05:05:07
Was this review helpful to you?
Yes
No
|
Perl.org sites
: bugs
| dev
| history
| jobs
| learn
| lists
| use
Site Information and Contacts |
|