You can subscribe to this list here.
2005 |
Jan
|
Feb
(16) |
Mar
(6) |
Apr
(38) |
May
(23) |
Jun
(5) |
Jul
(1) |
Aug
|
Sep
(10) |
Oct
(7) |
Nov
(6) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(20) |
Feb
(32) |
Mar
(24) |
Apr
(29) |
May
(5) |
Jun
(10) |
Jul
(12) |
Aug
(7) |
Sep
(1) |
Oct
(2) |
Nov
(27) |
Dec
(4) |
2007 |
Jan
(37) |
Feb
(10) |
Mar
(19) |
Apr
(10) |
May
(10) |
Jun
(7) |
Jul
(19) |
Aug
(29) |
Sep
(5) |
Oct
(17) |
Nov
(14) |
Dec
(2) |
2008 |
Jan
(4) |
Feb
(4) |
Mar
|
Apr
(8) |
May
|
Jun
(8) |
Jul
(1) |
Aug
(7) |
Sep
|
Oct
(1) |
Nov
(4) |
Dec
|
2009 |
Jan
|
Feb
(1) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(2) |
2010 |
Jan
|
Feb
(2) |
Mar
(2) |
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(2) |
2019 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <au...@in...> - 2005-02-01 15:30:11
|
Hi All, > Here the other day I needed to put a 120mb rdf/xml file into a RAP DB,=20 > I tried using the db-tool and uploading it, but on my P4 with 1gb of=20 > memory it used 1.8gb of memory, froze the whole machine and was still=20 > showing no sign of connecting to the DB after 30 minutes, so I stopped=20 > it. I already loaded quite large models using PHP and RAP, but you have to=20 set the $stream parameter of model::load to true to prevent RAP from=20 creating an in memory model first: model::load($filename, $type =3D NULL, $stream=3Dfalse) Hope that helps S=F6ren |
From: Chris B. <bi...@ze...> - 2005-02-01 14:46:42
|
Uppps, 1.5 MTriple in RAP, great :-) I guess S=F6ren will be interested. He was playing around with similar = size N3 files for his POWL project based on RAP. Chris --=20 Chris Bizer Freie Universit=E4t Berlin Phone: +49 30 838 54057 Mail: ch...@bi... Web: www.bizer.de -----Urspr=FCngliche Nachricht----- Von: rdf...@li... [mailto:rdf...@li...] Im Auftrag von Gunnar AAstrand Grimnes Gesendet: Dienstag, 1. Februar 2005 15:33 An: rdf...@li... Betreff: [Rdfapi-php-interest] RAP DB Hi all, Good idea to setup a mailing-list chris! This might be a bit early, as there might not be anyone else than me and = chris subscribed yet, but others can always check the archive. Here the other day I needed to put a 120mb rdf/xml file into a RAP DB, I = tried using the db-tool and uploading it, but on my P4 with 1gb of=20 memory it used 1.8gb of memory, froze the whole machine and was still=20 showing no sign of connecting to the DB after 30 minutes, so I stopped = it. Instead admitted that maybe PHP isn't right for everything and wrote a=20 java program to insert into mysql DB in RAPDB format. The program is=20 attached, and currently requires jena2, Java getopt=20 (http://www.urbanophile.com/arenn/hacking/download.html) and probably=20 java 1.5. With this you can for example do: java RAPDBInsert -m "http://example.org" -h trogon -u ggrimnes -p ****=20 -d rdf ~/public_html/foaf.rdf This worked like a dream, and I've now got a RAP DB with 1579160 (1.5M!) = triples. Normal operations like $model->find($res,$DC_title,null) are=20 quick, but anything that requires getting the whole model into memory=20 (f.x. regex finds) breaks everything. Even getting the size of the model = takes ~=3D15s, but with some care it's fully usable! Anyway, hope this might be useful to someone else. - Gunnar --=20 Gunnar AAstrand Grimnes ----------------------- Room 312, Computing Science Dept. University of Aberdeen Aberdeen AB24 3UE Mobile: (+44) (0) 7950 251379 Email: ggr...@cs... WWW: http://www.csd.abdn.ac.uk/~ggrimnes |
From: Gunnar A. G. <ggr...@cs...> - 2005-02-01 14:33:28
|
Hi all, Good idea to setup a mailing-list chris! This might be a bit early, as there might not be anyone else than me and chris subscribed yet, but others can always check the archive. Here the other day I needed to put a 120mb rdf/xml file into a RAP DB, I tried using the db-tool and uploading it, but on my P4 with 1gb of memory it used 1.8gb of memory, froze the whole machine and was still showing no sign of connecting to the DB after 30 minutes, so I stopped it. Instead admitted that maybe PHP isn't right for everything and wrote a java program to insert into mysql DB in RAPDB format. The program is attached, and currently requires jena2, Java getopt (http://www.urbanophile.com/arenn/hacking/download.html) and probably java 1.5. With this you can for example do: java RAPDBInsert -m "http://example.org" -h trogon -u ggrimnes -p **** -d rdf ~/public_html/foaf.rdf This worked like a dream, and I've now got a RAP DB with 1579160 (1.5M!) triples. Normal operations like $model->find($res,$DC_title,null) are quick, but anything that requires getting the whole model into memory (f.x. regex finds) breaks everything. Even getting the size of the model takes ~=15s, but with some care it's fully usable! Anyway, hope this might be useful to someone else. - Gunnar -- Gunnar AAstrand Grimnes ----------------------- Room 312, Computing Science Dept. University of Aberdeen Aberdeen AB24 3UE Mobile: (+44) (0) 7950 251379 Email: ggr...@cs... WWW: http://www.csd.abdn.ac.uk/~ggrimnes |
From: Chris B. <bi...@gm...> - 2005-02-01 09:18:08
|
Hi all, welcome to the new rdfapi-php-interest mailing list. This list aims at bringing together RAP users and the RAP development team. So feel free to send: + General questions about RAP + Feature requests + Bug reports + Patches + Links to interesting use cases We hope that this list will develop into the general forum for everybody involved in RAP. Chris -- Chris Bizer Freie Universität Berlin Phone: +49 30 838 54057 Mail: ch...@bi... Web: www.bizer.de -- GMX im TV ... Die Gedanken sind frei ... Schon gesehen? Jetzt Spot online ansehen: http://www.gmx.net/de/go/tv-spot |