arangosh> v = db._view("example");
[ArangoView 122, "example" (type arangosearch)]
arangosh> v.properties();
........>
{
"links" : {
},
"cleanupIntervalStep" : 10,
"consolidationPolicy" : {
"segmentThreshold" : 300,
"threshold" : 0.8500000238418579,
"type" : "bytes_accum"
},
"consolidationIntervalMsec" : 60000
}
arangosh> v.properties({cleanupIntervalStep: 12});
........>
{
"cleanupIntervalStep" : 12,
"consolidationIntervalMsec" : 60000,
"consolidationPolicy" : {
"segmentThreshold" : 300,
"threshold" : 0.8500000238418579,
"type" : "bytes_accum"
},
"links" : {
}
}
arangosh> v.properties({links: {demo: {}}})
........>
{
"cleanupIntervalStep" : 12,
"consolidationIntervalMsec" : 60000,
"consolidationPolicy" : {
"segmentThreshold" : 300,
"threshold" : 0.8500000238418579,
"type" : "bytes_accum"
},
"links" : {
"demo" : {
"analyzers" : [
"identity"
],
"fields" : {
},
"includeAllFields" : false,
"trackListPositions" : false,
"storeValues" : "none",
"id" : "133",
"type" : "arangosearch",
"view" : "hFFDA13719B2C/122"
}
}
}
arangosh> v.properties({links: {demo: null}})
{
"cleanupIntervalStep" : 12,
"consolidationIntervalMsec" : 60000,
"consolidationPolicy" : {
"segmentThreshold" : 300,
"threshold" : 0.8500000238418579,
"type" : "bytes_accum"
},
"links" : {
}
}