From: Christian W. <cw...@cw...> - 2007-03-08 12:01:24
|
Hello, Currently all possible needed/used files are included by require'ing a central file for each group of files, e.g sparql/SPARQL.php that includes all of the files in the directory. In my opinion it would be performance-wise better to let the files themselves include only the classes they need, e.g. SparqlEngineDb.php includes SparqlEngine and other dependencies itself. PHP has a very fast checking mechanism so that doing it that way would not slow down RAP at all, and would give us the benefit of not using so much memory as we don't include all the php files. Christian |