This is the home page for the Sesame Documentation space.
[GettingStarted]
[Federation]
[TransactionIsolation]
RI/O
Memory Store
new SailRepository(new MemoryStore());
new SailRepository(new MemoryStore(dir));
| parameter |
default |
comment |
| Repository ID |
memory |
unique name |
| Repository title |
Memory store |
common name |
| Persist |
true |
save contents to disk |
| Sync delay |
0 |
frequency of disk write |
Native Store
new SailRepository(new NativeStore(dir));
| parameter |
default |
comment |
| Repository ID |
native |
unique name |
| Repository title |
Native store |
common name |
| Triple indexes |
spoc,posc |
type of indexes |
Relational Store
new SailRepository(new PgSqlStore(database));
new SailRepository(new MySqlStore(database));
| parameter |
default |
comment |
| Repository ID |
pgsql/mysql |
uinque name |
| Repository title |
PostgreSQL Store/MySOL Store |
common name |
| JDBC driver |
org.postgresql.Driver/com.mysql.jdbc.Driver |
driver class |
| Host |
localhost |
server name |
| Port |
5432/3306 |
server port |
| Database |
sesame_store |
database name |
| Connection properties |
|
optional jdbc encoded connection properties |
| User name |
|
optional user name |
| Password |
|
optional password |
| Max number of triple tables |
256 |
limit of tables before switching to mono |
Mulgara Store
new SailRepository(new MulgaraStore(dir));
| parameter |
default |
comment |
| Repository ID |
mulgara |
unique name |
| Repository title |
Mulgara store |
common name |
HTTP Repository
new HTTPRepository(repositoryUrl);
| parameter |
default |
comment |
| Sesame server location |
http://localhost:8080/openrdf-sesame |
| Remote repository ID |
SYSTEM |
| Local repository ID |
SYSTEM@localhost |
| Repository title |
SYSTEM repository @localhost |