by axew3 » Sun Sep 10, 2017 2:18 pm
Hello all! i can see the post now! After Kaspir's answer i've take a re-look ... now it display. It was (may) looking as spam to me, in first instance...
I've a little class that i've write for the
WordPress Dropbox plugin, that may will help (or not, i'm not sure about the meaning of all your topic at sitepoint.com), but may this will result useful, also for someone else.
I read on an answer:
1. Does each user have a dedicated file for that data?
2. When are you writing to that file and why do you run into concurrent write scenarios?
would you like a single file, that for each line, containing the data you need for a session/user, or multiple files, one file for each?
The following code is about one file for each, not complete code (some points maybe will be not so clear due to the fact you do not know form where these vars are coming) but you'll take maybe a suggestion in this particular code parts (if i've +- understand your trouble, maybe not):
Code: Select all
$f = @file_get_contents($this->cache_folder . $w3all_dbx_ucache[0]['filename'] . ".txt");
if(!$f):
return false;
else : return $f;
endif;
}
AND
Code: Select all
if(!@file_put_contents($this->cache_file, $restot_items)){
$error = w3all_common_errors(0);
if( is_wp_error( $error ) ) {
$error->get_error_message();
}
}
} else {
$this->cache_file = $this->cache_folder . $w3all_dbx_ucache[0]['filename'] . ".txt";
file_put_contents($this->cache_file, $restot_items);
}
This is the little complete class i've write time ago
(which concept/code can be (quite) easily adapted for any other use):
Code: Select all
// This is a simply w3all cache class!
class w3all_cache {
public $cache_folder = WP3ALL_DROPBOX_PLUGIN_DIR . 'cache/';
public function switch_cache() {
global $w3all_dbx_ucache,$w3all_dropb_cache_time;
$m = isset($w3all_dbx_ucache[0]['time']) ? $w3all_dbx_ucache[0]['time'] : 0;
if((time() - $w3all_dropb_cache_time) > $m){
return self::do_cache();
} else {
return self::read_cache();
}
}
/**
* Write the cache file for WP user
*/
public function do_cache($var = '') {
global $restot_items, $g_user_id, $w3all_dbx_ucache;
if(empty($restot_items) && $var != 1):
return 1;
endif;
$rt = $restot_items;
$restot_items = json_encode($restot_items, JSON_UNESCAPED_SLASHES); // as php 5.4 or >
if(!isset($w3all_dbx_ucache[0]['filename'])){
$filename = md5(microtime() . rand(5, 15));
$this->cache_file = $this->cache_folder . $filename . ".txt";
if(!@file_put_contents($this->cache_file, $restot_items)){
$error = w3all_common_errors(0);
if( is_wp_error( $error ) ) {
$error->get_error_message();
}
}
} else {
$this->cache_file = $this->cache_folder . $w3all_dbx_ucache[0]['filename'] . ".txt";
file_put_contents($this->cache_file, $restot_items);
}
$fname = (isset($w3all_dbx_ucache[0]['filename'])) ? $w3all_dbx_ucache[0]['filename'] : $filename;
$data = array('time' => time(), 'filename' => $fname);
update_user_meta( $g_user_id, 'wp_w3all_dbx_ucache', $data, '' );
return $rt;
}
/**
* Read cache
*/
public function read_cache() {
global $w3all_dbx_ucache;
$f = @file_get_contents($this->cache_folder . $w3all_dbx_ucache[0]['filename'] . ".txt");
if(!$f):
return false;
else : return $f;
endif;
}
} // end class
$cache = new w3all_cache;
$cache_ck = $cache->switch_cache();
:) Hello all! i can see the post now! After Kaspir's answer i've take a re-look ... now it display. It was (may) looking as spam to me, in first instance...
I've a little class that i've write for the [url=https://www.axew3.com/w3/dropbox/?u=axew3]WordPress Dropbox plugin[/url], that may will help (or not, i'm not sure about the meaning of all your topic at sitepoint.com), but may this will result useful, also for someone else.
I read on an answer:
[quote]1. Does each user have a dedicated file for that data?
2. When are you writing to that file and why do you run into concurrent write scenarios?[/quote]
would you like a single file, that for each line, containing the data you need for a session/user, or multiple files, one file for each?
The following code is about one file for each, not complete code (some points maybe will be not so clear due to the fact you do not know form where these vars are coming) but you'll take maybe a suggestion in this particular code parts (if i've +- understand your trouble, maybe not):
[code] $f = @file_get_contents($this->cache_folder . $w3all_dbx_ucache[0]['filename'] . ".txt");
if(!$f):
return false;
else : return $f;
endif;
}[/code]
AND
[code] if(!@file_put_contents($this->cache_file, $restot_items)){
$error = w3all_common_errors(0);
if( is_wp_error( $error ) ) {
$error->get_error_message();
}
}
} else {
$this->cache_file = $this->cache_folder . $w3all_dbx_ucache[0]['filename'] . ".txt";
file_put_contents($this->cache_file, $restot_items);
}[/code]
[size=110][b]This is the little complete class i've write time ago
(which concept/code can be (quite) easily adapted for any other use):[/b][/size]
[code]// This is a simply w3all cache class!
class w3all_cache {
public $cache_folder = WP3ALL_DROPBOX_PLUGIN_DIR . 'cache/';
public function switch_cache() {
global $w3all_dbx_ucache,$w3all_dropb_cache_time;
$m = isset($w3all_dbx_ucache[0]['time']) ? $w3all_dbx_ucache[0]['time'] : 0;
if((time() - $w3all_dropb_cache_time) > $m){
return self::do_cache();
} else {
return self::read_cache();
}
}
/**
* Write the cache file for WP user
*/
public function do_cache($var = '') {
global $restot_items, $g_user_id, $w3all_dbx_ucache;
if(empty($restot_items) && $var != 1):
return 1;
endif;
$rt = $restot_items;
$restot_items = json_encode($restot_items, JSON_UNESCAPED_SLASHES); // as php 5.4 or >
if(!isset($w3all_dbx_ucache[0]['filename'])){
$filename = md5(microtime() . rand(5, 15));
$this->cache_file = $this->cache_folder . $filename . ".txt";
if(!@file_put_contents($this->cache_file, $restot_items)){
$error = w3all_common_errors(0);
if( is_wp_error( $error ) ) {
$error->get_error_message();
}
}
} else {
$this->cache_file = $this->cache_folder . $w3all_dbx_ucache[0]['filename'] . ".txt";
file_put_contents($this->cache_file, $restot_items);
}
$fname = (isset($w3all_dbx_ucache[0]['filename'])) ? $w3all_dbx_ucache[0]['filename'] : $filename;
$data = array('time' => time(), 'filename' => $fname);
update_user_meta( $g_user_id, 'wp_w3all_dbx_ucache', $data, '' );
return $rt;
}
/**
* Read cache
*/
public function read_cache() {
global $w3all_dbx_ucache;
$f = @file_get_contents($this->cache_folder . $w3all_dbx_ucache[0]['filename'] . ".txt");
if(!$f):
return false;
else : return $f;
endif;
}
} // end class
$cache = new w3all_cache;
$cache_ck = $cache->switch_cache();
[/code]