您好,登錄后才能下訂單哦!
怎么在Laravel中利用UUID實現(xiàn)數(shù)據(jù)分表操作?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
UUID
UUID是指在一臺機器上生成的數(shù)字,它保證對在同一時空中的所有機器都是唯一的。
說的簡單點,它就是通過一個規(guī)則(如:業(yè)務標識號+年月日+當日自增數(shù)字格式化)生成的一個具有唯一性的辨識資訊。用于關聯(lián)我們的一些額數(shù)據(jù)和資訊。
實例
之前在做一個項目的時候用到這個東西,現(xiàn)在我就用Laravel框架寫一個簡單的demo
前端form表單
<!DOCTYPE html> <html> <head></head> <body> <form action="/addMysql" method="post"> {!!csrf_field()!!} <table> <tr> <th >注冊</th> </tr> <tr> <td>賬號</td> <td> <input type="text" name="uname" value="" /> </td> </tr> <tr> <td>密碼</td> <td> <input type="password" name="pwd" value="" /> </td> </tr> <tr> <td>性別</td> <td> <input type="radio" name="sex" value="1" />:男 <input type="radio" name="sex" value="0" />:女 </td> </tr> <tr> <td>年齡</td> <td> <input type="text" name="age" value="" /> </td> </tr> <tr> <td > <input type="submit" value="提交" /> </td> </tr> </table> </form> </body> </html>
建立數(shù)據(jù)庫和數(shù)據(jù)表(只建立 1 個索引表 和 8 個進行存儲詳細信息的子表)
原理:通過UUID的唯一特性,將一個數(shù)據(jù)的詳細信息數(shù)據(jù)存在其他表中的,這個表示通過UUID隨機分配出來的,索引表中只存儲UUID和關鍵字段
表前綴統(tǒng)一前綴-------mall_
表 : mall_index_user 索引表 -------uuid,uname
表0: mall_user_0 uuid,uname,sex,age
表1: mall_user_1
表2: mall_user_2
表3: mall_user_3
表4: mall_user_4
表5: mall_user_5
表6: mall_user_6
表7: mall_user_7
通過路由和控制器進行form表單提交數(shù)據(jù)向數(shù)據(jù)庫插入數(shù)據(jù)
路由:
//form表單頁面路由 Route::get('Mysql',function(){ return view('home/Mysql'); }); //數(shù)據(jù)插入提交路由 Route::post('/addMysql','findMoreController@addMysql');
控制器:
//向數(shù)據(jù)庫插入數(shù)據(jù) public function addMysql(Request $request){ $uuid =md5(uniqid(mt_rand (), true)); $uid =hexdec(substr($uuid,0,1)) % 8; $sex = $request->input('sex'); $age = $request->input('age'); //dd($uuid); $uname = $request->input('uname'); $result = DB::table('index_user')->insert(['uuid'=>$uuid,'uname'=>$uname]); $result1 = DB::table('user_'.$uid)->insert(['uuid'=>$uuid,'uname'=>$uname,'sex'=>$sex,'age'=>$age]); if($result1){ return '1'; }else{ return '0'; } }
解:上面的$uid就是通過UUID得到的要向哪一張詳細信息表中插入的表的代表號
例如:$uid=3 那么就向user_3中插入詳細信息
插入成功后進行查詢,先通過uname查詢出UUID,通過UUID知道詳細信息存儲在哪張子表中.然后再進行查詢
路由:
//查詢頁面 Route::get('findMysql',function(){ return view('home/findMysql'); }); //查詢路由 Route::post('/findMysql','findMoreController@findMysql');
控制器:
//查詢 public function findMysql(Request $request){ //dd($request); $uname=$request->input('uname'); $uuid =DB::table('index_user')->where('uname','=',$uname)->value('uuid'); $uid =hexdec(substr($uuid,0,1)) % 8; $userInfos=DB::table('user_'.$uid)->get(); if($userInfos){ return view('home/selectMysql',['userInfos'=>$userInfos]); }else{ return view('home/findMysql'); } }
前端展示
<!DOCTYPE html> <html> <head></head> <body> <form action="" method="post"> <table> <tr> <th >遍歷</th> </tr> @foreach($userInfos as $userInfo) <tr> <td>性別</td> <td> <input type="text" name="" value="{{$userInfo->sex}}" /> </td> </tr> <tr> <td>年齡</td> <td> <input type="text" name="" value="{{$userInfo->age}}" /> </td> </tr> @endforeach </table> </form> </body> </html>
看完上述內(nèi)容,你們掌握怎么在Laravel中利用UUID實現(xiàn)數(shù)據(jù)分表操作的方法了嗎?如果還想學到更多技能或想了解更多相關內(nèi)容,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。