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
const DynamoDB = require('aws-sdk/clients/dynamodb') | |
const documentClient = new DynamoDB.DocumentClient({ | |
apiVersion: '2012-08-10', | |
// logger: console | |
}) | |
module.exports = class Model { | |
/** | |
* Model constructor |
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
#!/bin/bash | |
WEBDIR=/var/www/html/ | |
RANDOM_NAME=$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 13) | |
echo "<?php opcache_reset(); ?>" > ${WEBDIR}${RANDOM_NAME}.php | |
curl http://localhost/${RANDOM_NAME}.php | |
rm ${WEBDIR}${RANDOM_NAME}.php | |
echo "cache reset" |
NewerOlder