There are a couple parameters you can change that I know of in the
php.ini file. Sorry, if I misunderstand your question.
---
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 6000 ; Maximum execution time of each script, in
seconds
max_input_time = 600 ; Maximum amount of time each script may
spend parsing request data
memory_limit = 32M ; Maximum amount of memory a script may consume
(8MB)
---
Also depending on how the data is sent - you may also want to change:
upload_max_filesize = 16M
or
post_max_size = 16M
Setting in a script using ini_set() will not work, I think, but you may
want to verify that.
I also use PHPMyAdmin for some tasks, and it also has it's own execution
times in the config file.
4000 triples seems pretty small to me. I have loaded Wordnet on several
occasions.
Hope this helps.
Peter Boot wrote:
> Hi all,
>
> I am loading a 4000 triple RDF file into a database model. I found out
> about the stream parameter (thank you for the list archive), but still
> I need to change the php 30 second max execution time parameter in
> order to complete the process. I anticipate my files may get to be a
> hundred times larger than this, so I expect some trouble.
>
> Can anyone give more information about database load execution times?
>
> Best regards,
> Peter
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by Yahoo.
> Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
> Search APIs Find out how you can build Yahoo! directly into your own
> Applications - visit
> http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
> _______________________________________________
> Rdfapi-php-interest mailing list
> Rdf...@li...
> https://lists.sourceforge.net/lists/listinfo/rdfapi-php-interest
>
|