-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Direct RDF import into database #146
Comments
What is the reason to avoid SPARUL queries? Performance? Although it might be difficult, is it an option to use PDO and directly write into the database? CC @semsol |
The idea is to be able to post rdf data through an endpoint, and save it directly to the database. |
I am not that familiar with |
Alright, do you want me to propose some class name / structure to include in the project ? Btw have you think to add comments on the database fields ? |
Hi, sorry for the late response.
Not yet, but you can suggest something as PR and we can discuss details there.
Yeah, that makes it sometimes hard to understand what is going on. Efforts regarding documentation in general should be done as file and not in the Wiki, if possible. Makes it easier to keep track of changes.
I am not sure what do you want to achieve for your project. Code contributions are welcome in general, but new code must have test coverage to some extend. Also some sound documentation. From a performance perspective: ARC2 doesn't scale very good, which means you will eventually run into problems. It depends on your data, there is no definite point. AFAIK it doesn't matter how fast you can include data in the store, at some point querying it will be slow no matter what (also depended on your data). When I wrote the adapter layer to allow mysqli and PDO, I saw a lot of MySQL 4 related "optimizations". Also table type MyISAM was used for a long time, which is not fully ACID compliant (good stackoverflow post about MyISAM vs. InnoDb: https://stackoverflow.com/a/15678615/5301527). Using a stand alone solution like Virutoso might worth a shot. If you describe your use case in a little more detail, I may help. But in general I would say it doesn't worth the effort. Thank you for suggesting it though! |
Hello everyone,
I'm searching for a function which allows to import directly rdf data into the database, without going through a SPARQL request.
For now I reached to do it by using
ARC2_StoreLoadQueryHandler
like this :Is there some built-in function that is doing the same operation ?
If not, could it be a good idea to include it in the project ? (I can eventually take in charge the devs with some guidelines)
Best regards
The text was updated successfully, but these errors were encountered: