Bagaimana cara membuat json data recent post by vote:user #293
Unanswered
yuliakbard
asked this question in
Q&A
Replies: 1 comment 12 replies
-
Sebenarnya nggak semua harus dijadikan JSON dan dimuat dengan JavaScript. Cache bisa juga dibuat dalam bentuk berkas. Misalnya seperti ini: $cache = LOT . D . 'cache' . D . 'recent-votes.php';
$pages = [];
if (exist($cache, 1)) {
// Load cache
$pages = require $cache;
} else {
// Create cache
foreach ($user->getVotesAsPages() as $page) {
$pages[] = $page->path;
}
// Save cache to a file
save($cache, '<?' . 'php return' . z($pages) . ';', 0600);
}
$pages = new Pages($pages); |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
kalau menggunakan cara langsung untuk menampilkan recent post by vote:user, ane liat, utk loading muat halaman pertama kali itu, ada cukup banyak jeda, rencananya mau ane konversi dalam bentuk json dulu, baru ditampilin ke halaman menggunakan javascript.
Apa ada feed.json yg menampilkan recent post by vote:user kang? atau bisakah dibuat data json nya?
Beta Was this translation helpful? Give feedback.
All reactions