Package org.apache.jcs.auxiliary.disk.jdbc

Examples of org.apache.jcs.auxiliary.disk.jdbc.TableState


        String tableName = "JCS_TEST";
        attributes.setDriverClassName( "org.gjt.mm.mysql.Driver" );
        attributes.setTableName( tableName );
        attributes.setBalkDuringOptimization( true );

        TableState tableState = new TableState( tableName );
        tableState.setState( TableState.OPTIMIZATION_RUNNING );

        MySQLDiskCache cache = new MySQLDiskCache( attributes, tableState );

        Object result = cache.doGet( "myKey" );
        assertNull( "The result should be null", result );
View Full Code Here


        attributes.setPassword( "letmein" );
        attributes.setUrl( "jdbc:mysql://10.19.98.43:3306/flight_option_cache" );
        attributes.setDriverClassName( "org.gjt.mm.mysql.Driver" );
        String tableName = "JCS_STORE_FLIGHT_OPTION_ITINERARY";
        attributes.setTableName( tableName );
        TableState tableState = new TableState( tableName);

        MySQLTableOptimizer optimizer = new MySQLTableOptimizer( attributes, tableState );

        optimizer.optimizeTable();
    }
View Full Code Here

        attributes.setPassword( "letmein" );
        attributes.setUrl( "jdbc:mysql://10.19.98.43:3306/flight_option_cache" );
        attributes.setDriverClassName( "org.gjt.mm.mysql.Driver" );
        String tableName = "DOESNTEXIST";
        attributes.setTableName( tableName );
        TableState tableState = new TableState( tableName);

        MySQLTableOptimizer optimizer = new MySQLTableOptimizer( attributes, tableState );

        optimizer.optimizeTable();
    }
View Full Code Here

TOP

Related Classes of org.apache.jcs.auxiliary.disk.jdbc.TableState

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.