Returns whether or not a lock exists.
Request $request A Request instance:
Boolean true if lock exists, false otherwise
Overrides StoreInterface::isLocked
public function isLocked(Request $request) {
return is_file($this
->getPath($this
->getCacheKey($request) . '.lck'));
}