keycloak-uncached

Details

diff --git a/docbook/auth-server-docs/reference/en/en-US/modules/auth-spi.xml b/docbook/auth-server-docs/reference/en/en-US/modules/auth-spi.xml
index fdc7be2..99dd7fe 100755
--- a/docbook/auth-server-docs/reference/en/en-US/modules/auth-spi.xml
+++ b/docbook/auth-server-docs/reference/en/en-US/modules/auth-spi.xml
@@ -244,7 +244,7 @@ Forms Subflow - ALTERNATIVE
                 This services/ file is used by Keycloak to scan the providers it has to load into the system.
             </para>
             <para>
-                To deploy this jar, just copy it to the standalone/configuration/providers directory.
+                To deploy this jar, just copy it to the providers directory.
             </para>
         </section>
         <section>
@@ -558,7 +558,7 @@ public class SecretQuestionAuthenticatorFactory implements AuthenticatorFactory,
                 This services/ file is used by Keycloak to scan the providers it has to load into the system.
             </para>
             <para>
-                To deploy this jar, just copy it to the standalone/configuration/providers directory.
+                To deploy this jar, just copy it to the providers directory.
             </para>
         </section>
         <section>
@@ -831,7 +831,7 @@ public class SecretQuestionRequiredActionFactory implements RequiredActionFactor
                 This services/ file is used by Keycloak to scan the providers it has to load into the system.
             </para>
             <para>
-                To deploy this jar, just copy it to the standalone/configuration/providers directory.
+                To deploy this jar, just copy it to the providers directory.
             </para>
         </section>
         <section>
diff --git a/examples/providers/authenticator/README.md b/examples/providers/authenticator/README.md
index 725785a..38f6983 100755
--- a/examples/providers/authenticator/README.md
+++ b/examples/providers/authenticator/README.md
@@ -2,7 +2,7 @@ Example User Federation Provider
 ===================================================
 
 This is an example of defining a custom Authenticator and Required action.  This example is explained in the user documentation
-of Keycloak.   To deploy, build this directory then take the jar and copy it to standalone/configuration/providers. Alternatively you can deploy as a module by running:
+of Keycloak.   To deploy, build this directory then take the jar and copy it to providers directory. Alternatively you can deploy as a module by running:
 
     KEYCLOAK_HOME/bin/jboss-cli.sh --command="module add --name=org.keycloak.examples.secret-question --resources=target/authenticator-required-action-example.jar --dependencies=org.keycloak.keycloak-core,org.keycloak.keycloak-server-spi,org.keycloak.keycloak-services,org.jboss.resteasy.resteasy-jaxrs,javax.ws.rs.api"
 
diff --git a/examples/providers/event-listener-sysout/README.md b/examples/providers/event-listener-sysout/README.md
index 0c07722..57519f3 100644
--- a/examples/providers/event-listener-sysout/README.md
+++ b/examples/providers/event-listener-sysout/README.md
@@ -1,7 +1,7 @@
 Example Event Listener that prints events to System.out
 =======================================================
 
-To deploy copy target/event-listener-sysout-example.jar to standalone/configuration/providers. Alternatively you can deploy as a module by running:
+To deploy copy target/event-listener-sysout-example.jar to providers directory. Alternatively you can deploy as a module by running:
 
     KEYCLOAK_HOME/bin/jboss-cli.sh --command="module add --name=org.keycloak.examples.event-sysout --resources=target/event-listener-sysout-example.jar --dependencies=org.keycloak.keycloak-core,org.keycloak.keycloak-server-spi"
 
diff --git a/examples/providers/event-store-mem/README.md b/examples/providers/event-store-mem/README.md
index 8c04eba..d533fda 100644
--- a/examples/providers/event-store-mem/README.md
+++ b/examples/providers/event-store-mem/README.md
@@ -1,7 +1,7 @@
 Example Event Store that stores events in memory
 ================================================
 
-To deploy copy target/event-store-mem-example.jar to standalone/configuration/providers. Alternatively you can deploy as a module by running:
+To deploy copy target/event-store-mem-example.jar to providers directory. Alternatively you can deploy as a module by running:
 
     KEYCLOAK_HOME/bin/jboss-cli.sh --command="module add --name=org.keycloak.examples.event-inmem --resources=target/event-store-mem-example.jar --dependencies=org.keycloak.keycloak-core,org.keycloak.keycloak-server-spi"
 
diff --git a/examples/providers/federation-provider/README.md b/examples/providers/federation-provider/README.md
index 42026c9..c8b4430 100755
--- a/examples/providers/federation-provider/README.md
+++ b/examples/providers/federation-provider/README.md
@@ -2,7 +2,7 @@ Example User Federation Provider
 ===================================================
 
 This is an example of user federation backed by a simple properties file.  This properties file only contains username/password
-key pairs.  To deploy, build this directory then take the jar and copy it to standalone/configuration/providers. Alternatively you can deploy as a module by running:
+key pairs.  To deploy, build this directory then take the jar and copy it to providers directory. Alternatively you can deploy as a module by running:
 
     KEYCLOAK_HOME/bin/jboss-cli.sh --command="module add --name=org.keycloak.examples.userprops --resources=target/federation-properties-example.jar --dependencies=org.keycloak.keycloak-core,org.keycloak.keycloak-server-spi"