This backend is based on the concept of Zend_Cache's TwoLevels backend except it is only intended to use the fast backend for actual cache record storage and the slow backend for tagging support. The slow backend stores only empty records.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<soap:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ecl="http://ECL.Online.BT.ChangeLog.ChangeLogRequest_v1_0_XML.xsd" xmlns:soap="http://www.w3.org/2003/05/soap-envelope"> | |
<soap:Body> | |
<ecl:ChangeLogRequest> | |
<ecl:MessageDateTime>2013-02-25T14:03:09+13:00</ecl:MessageDateTime> | |
<ecl:BusinessUnit>CP</ecl:BusinessUnit> | |
<ecl:AccountNumber>91327067</ecl:AccountNumber> | |
<ecl:ReturnData>Pricing</ecl:ReturnData> | |
</ecl:ChangeLogRequest> | |
</soap:Body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# see https://apple.stackexchange.com/questions/420959/spotlight-indexing-of-google-drive-file-stream-disabled-on-restart/424445#424445 for an explanation | |
# based on https://gist.github.com/emersonford/85cc74f7f90c81d1b75c3c246124591d | |
import os | |
from copy import deepcopy | |
from math import log | |
from pathlib import Path | |
DEBUG = 0 |