mirror of https://gitee.com/bigwinds/arangodb
Merge branch 'devel' of ssh://github.com/ArangoDB/ArangoDB into devel
This commit is contained in:
commit
62f4c78baa
|
@ -26,7 +26,7 @@ option(USE_PRECOMPILED_V8 "use a precompiled V8" OFF)
|
|||
|
||||
if (USE_PRECOMPILED_V8)
|
||||
set(V8_VERSION
|
||||
"V8-4.9.391"
|
||||
"V8-5.0.71.39"
|
||||
CACHE INTERNAL
|
||||
"${PROJECT_NAME}: Version"
|
||||
FORCE
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
<button id="saveCurrentQuery" class="button-success"><i class="fa fa-save"></i>Save</button>
|
||||
</div>
|
||||
|
||||
<div class="pull-right" style="position: absolute; top: 60px; right: 0;">
|
||||
<span id="querySpotlight" class="action"><i class="fa fa-search"></i></span>
|
||||
<div class="pull-right">
|
||||
<span id="querySpotlight" class="action"><i class="fa fa-magic"></i></span>
|
||||
<div class="styled-select">
|
||||
<select id="querySize" class="query-size"/>
|
||||
</div>
|
||||
|
|
|
@ -36,7 +36,7 @@ module.exports = function collectionStorage(cfg) {
|
|||
if (!cfg) {
|
||||
cfg = {};
|
||||
}
|
||||
const autoUpdate = Boolean(cfg.autoUpdate);
|
||||
const autoUpdate = Boolean(cfg.autoUpdate !== false);
|
||||
const pruneExpired = Boolean(cfg.pruneExpired);
|
||||
const ttl = (cfg.ttl || 60 * 60) * 1000;
|
||||
const collection = (
|
||||
|
|
Loading…
Reference in New Issue