Package railo.runtime.cache

Examples of railo.runtime.cache.CacheConnection


            if(ds!=null)
              throw new ApplicationException(
                  "datasource ["+storage+"] is not enabled to be used as session/client storage, " +
                  "you have to enable it in the railo administrator or define key \"storage=true\" for datasources defined in Application.cfc .");
           
            CacheConnection cc = Util.getCacheConnection(pc.getConfig(),storage,null);
            if(cc!=null)
              throw new ApplicationException("cache ["+storage+"] is not enabled to be used  as a session/client storage, you have to enable it in the railo administrator.");
           
            throw new ApplicationException("there is no cache or datasource with name ["+storage+"] defined.");
          }
View Full Code Here

TOP

Related Classes of railo.runtime.cache.CacheConnection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.