We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following configuration sets up an XDI endpoint backed by Redis at the relative path /graph:
<!-- MESSAGING TARGET at /graph --> <bean id="graphfactory1" class="xdi2.core.impl.json.redis.RedisJSONGraphFactory"> <property name="host" value="localhost" /> </bean> <bean id="graph1" factory-bean="graphfactory1" factory-method="openGraph" /> <bean name="/graph" class="xdi2.messaging.target.impl.graph.GraphMessagingTarget"> <property name="graph" ref="graph1" /> </bean>