GithubHelp home page GithubHelp logo

burki / arc2 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from is4code/arc2

0.0 1.0 0.0 867 KB

ARC RDF Classes for PHP

License: Other

JavaScript 2.69% Ruby 0.83% PHP 96.31% Makefile 0.05% Dockerfile 0.12%

arc2's Introduction

ARC2

Latest Stable Version Total Downloads Latest Unstable Version License

ARC2 is a PHP 7.2+ library for working with RDF. It also provides a MySQL-based triplestore with SPARQL support. Older versions of PHP may work, but are not longer tested.

Test status:

Database Status
MariaDB 10.1
MariaDB 10.2
MariaDB 10.3
MariaDB 10.4
MariaDB 10.5
MySQL 5.5
MySQL 5.6
MySQL 5.7

Documentation

For the documentation, see the Wiki. To quickly get started, see the Getting started guide.

Installation

Package available on Composer.

You should use Composer for installation:

composer require semsol/arc2:^2

Further information about Composer usage can be found here, for instance about autoloading ARC2 classes.

Requirements

PHP

7.2 7.3 7.4 8.0
๐Ÿ‘ ๐Ÿ‘ ๐Ÿ‘ ๐Ÿ‘

Database systems

This section is relevant, if you wanna use database related functionality.

MySQL

5.5 5.6 5.7 8.0
๐Ÿ‘ ๐Ÿ‘ ๐Ÿ‘ ๐Ÿ’ฅ (1)

MariaDB

10.0 10.1 10.2 10.3 10.4 10.5
โ“(2) ๐Ÿ‘ ๐Ÿ‘ ๐Ÿ‘ ๐Ÿ‘ ๐Ÿ‘

(1) As long as ARC2 uses mysqli, a connection to MySQL Server 8.0 is not possible. For more information, please look here.

(2) Not tested anymore, because outdated version.

RDF triple store

SPARQL support

Please have a look into SPARQL-support.md to see which SPARQL 1.0/1.1 features are currently supported.

In-Memory store (SQLite-based)

Using MySQL as database backend is the default way. But you don't need MySQL, SQLite is enough to get a non-persistent in-memory store. Use the following example code to get a ready-to-use store instance.

// get a working ARC2_Store instance (with SQLite adapter)
$store = ARC2::getStore(['db_adapter' => 'pdo', 'db_pdo_protocol' => 'sqlite']);

// add 1 triple to the store
$store->query('INSERT INTO <http://example.com/> { <http://s> <http://p1> "baz" . }');

// send a SPARQL query to the store
$result = $store->query('SELECT * FROM <http://example.com/> WHERE {<http://s> <http://p1> ?o.}');

// you should get an array of array's with one entry in $result['result']['row'].
var_dump($result);

// remember, after your script finished, all data in $store is gone

Use cache

The RDF store implementation provides a hash-based query cache. It works on two levels: SQL and SPARQL, which means, that it checks given SPARQL queries as well as internally generated SQL queries.

To use it, just add the following to the database configuration:

$store = ARC2::getStore(array(
    'db_name' => 'testdb',
    'db_user' => 'root',
    'db_pwd'  => '',
    'db_host' => '127.0.0.1',
    // ...
    'cache_enabled' => true // <== activates cache
));

Per default it uses a file based cache, which stores items in the default temp folder of the system (in Linux its usually /tmp). But you can use another cache solution, such as memcached.

PSR-16 compatibility

Our cache solution is PSR-16 compatible, which means, that you can use your own cache instance. To do that, add the following to the database configuration:

$store = ARC2::getStore(array(
    'db_name' => 'testdb',
    'db_user' => 'root',
    'db_pwd'  => '',
    'db_host' => '127.0.0.1',
    // ...
    'cache_enabled' => true
    'cache_instance' => new ArrayCache() // <=== example Cache instance, managed by yourself
));

ARC2 uses Symfony Cache , which provides many connectors out of the box (Overview).

Known problems/restrictions with database systems

In this section you find known problems with MariaDB or MySQL, regarding certain features. E.g. MySQL 5.5 doesn't allow FULLTEXT indexes in InnoDB. We try to encapsulate any differences in the DB adapters, so that you don't have to care about them. In case you run into problems, this section might be of help.

MySQL 8.0 and mysqli

Using mysqli with MySQL 8.0 as backend throws the following exception:

mysqli_connect(): The server requested authentication method unknown to the client [caching_sha2_password]

Based on this source, one has to change the my.cnf, adding the following entry:

[mysqld] default-authentication-plugin=mysql_native_password

Internal information for developers

Please have a look here to find information about maintaining and extending ARC2 as well as our docker setup for local development.

arc2's People

Contributors

ailintom avatar bnowack avatar burki avatar cgutteridge avatar clockwerx avatar coreation avatar craigdietrich avatar danmichaelo avatar davechallis avatar davetaz avatar is4code avatar jonphipps avatar k00ni avatar knurg avatar kwijibo avatar mattisg avatar milesw avatar nkos-eu avatar olberger avatar patrickmcsweeney avatar pietercolpaert avatar royopa avatar samuell avatar semsol avatar zhangtaihao avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.