This repository has been archived by the owner on Apr 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c313f0
commit eec2d42
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Amanuensis | ||
|
||
Amanuensis is a clustered IndexWriter implementation for writing to Infinispan Lucene Directories. It overcomes the limitation that only | ||
a single IndexWriter may be open at any one time on a Lucene Directory by leveraging the underlying JGroups channels used by Infinispan | ||
and streaming changes from slave nodes to a master node. | ||
|
||
[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project xmlns="http://maven.apache.org/DECORATION/1.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd" | ||
name="amanuensis"> | ||
|
||
<skin> | ||
<groupId>net.dataforte.maven.skins</groupId> | ||
<artifactId>dataforte-skin</artifactId> | ||
<version>2</version> | ||
</skin> | ||
|
||
<bannerLeft> | ||
<name>Amanuensis</name> | ||
</bannerLeft> | ||
|
||
<bannerRight> | ||
<src>images/logo.png</src> | ||
</bannerRight> | ||
|
||
<body> | ||
|
||
<menu name="Amanuensis"> | ||
<item name="Introduction" href="index.html" /> | ||
</menu> | ||
|
||
<menu name="Information" ref="reports" /> | ||
</body> | ||
</project> |