跳到主內容

最近更新的頁面

MongoDB教育訓練-20211223-01

  Hideden Replica Set Member 隱藏結點,不太使用(歷史,所有請求不會訪問) Delayed Replica Set Member 不太使用,先將資料取回不同步(延...

MongoDB教育訓練-20211223-02

資料先寫入記憶體 , checkpoint => 一分鐘( or 資料到達大小) 髒數據寫入DB journal log 60ms 寫入 db db 最多錯失60 ms 資料 "OK -...

MongoDB教育訓練-20211223-03

vertical scaling 垂直擴展(升級到某個程度,會很貴並有極限) horizontal sacling 水平擴展 (比較省成本) 沒有一定要shard(如果資料不多不需要,管...

MongoDB教育訓練-20211223-04-關於安全

對稱加密 && 非對稱加密    

Laravel 解決在 CentOS 7 下 log 檔無法寫入的問題

在  config/logging.php 'permission' => 0775, 'daily' => [ 'driver' => 'daily', ...

【extention】RemoteSSH

  Running the contributed command: ‘_workbench.downloadResource‘ failed解决 1 問題描述此前,本人參考網上教程在VS ...

Laravel_Queue

20分鐘學會Laravel的Queue功能 (pandalab.org) 修改設定檔 env.php -> 指定何種連接 queue.php 連接設定 建立table # 建立 ...

【Bootstrap-table】bs_table_common.js

var bootstrapTableBaseConfig = { height: getHeight(), idField:"dv_no", toolbar:"...

【bootstrap-table】相關連結

bootstap-table 官網 bootstrap table filterBy数据刷选过滤器和查询条件 - itxst.com

require和include的不同

include('func.php'); include 'func.php'; require('lib.php'); require('lib.php'); incl...

Laravel migration 可使用的欄位類型

可使用的欄位類型 資料庫 Schema 生成器包含表格常用的各種欄位類型,如下所列: 程式碼 說明 $table->id(); $table->bigIncrements('id') ...

Laravel Repository

Day13-[Laravel 資料夾目錄與內容] Repository - iT 邦幫忙::一起幫忙解決難題,拯救 IT 人的一天 (ithome.com.tw)

大於等於小於 縮寫

lt:less than 小於 le:less than or equal to 小於等於 eq:equal to 等於 ne:not equal to 不等於 ge:greater t...

【Git】TorotoiseGit 占用資源解決方法

  【原因】 TorotoiseGit 會掃描硬碟內有git 版控資料夾的的異動,並產生相對應的圖示,有時會造成主機磁碟讀寫過高 【解決】限縮掃描範圍 任一個資料夾按右鍵->【To...

【JS】相關資源

教學 现代 JavaScript 教程

Laravel_log_permission

  config/logging.php 'daily' => [ 'driver' => 'daily', 'path' => storage_...

Laravel 建立專案

先安裝composer ,在切換到放置專案的目錄composer global require laravel/installer laravel new example-app c...

PHP_判斷json物件

  function isJson($string) { json_decode($string); return json_last_error() === JSON_ERR...

【MySQL】 mysqldump參數大全

  IT 研究室 ( 前IT DBA's 資訊站): [轉載] MySQL mysqldump參數大全 (jaychu649.blogspot.com) 要注意的是--master-data...

【Python】刪除 window 下執行時產生的暫存檔

for /f "delims=" %F in ('Dir /B /S .\*.py ^|findstr /IE "\\migrations\\[^\\]*.py"^|findstr /IEV "...