blob: bdbc81a62495e605623886b5e2d811ed58b9c051 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
= Apache Ignite as MyBatis L2 Cache
Apache Ignite can be used as a MyBatis L2 cache that distributes and caches data across a cluster of machines.
If you are an Apache Maven user, simply add the following dependency to the `pom.xml`:
[tabs]
--
tab:pom.xml[]
[source,xml]
----
<dependencies>
...
<dependency>
<groupId>org.mybatis.caches</groupId>
<artifactId>mybatis-ignite</artifactId>
<version>1.0.5</version>
</dependency>
...
</dependencies>
----
--
Alternatively, you can also download the https://github.com/mybatis/ignite-cache/releases[zip bundle, window=_blank],
decompress it and add the jars in the classpath.
Then, just specify it in the mapper XML as follows:
[tabs]
--
tab:XML[]
[source,xml]
----
<mapper namespace="org.acme.FooMapper">
<cache type="org.mybatis.caches.ignite.IgniteCacheAdapter" />
</mapper>
----
--
and configure your Ignite cache in `config/default-config.xml`. (Simple reference configurations are available on
https://github.com/mybatis/ignite-cache/tree/master/config[GitHub, window=_blank])