get("view")) { case 'key': $key = $request->get("key"); /* $result = RedisClusters::remember("/word_index/{$key}",10,function() use($key){ return WordIndex::where('word','like',$key."%") ->whereOr('word_en','like',$key."%") ->orderBy('word_en') ->take(10)->get(); }); $table = WordIndex::where('word','like',$key."%") ->whereOr('word_en','like',$key."%") ->orderBy('len') ->orderBy('word_en') ->take(10); Log::info($table->toSql()); $result = $table->get(); */ $result = DB::select("SELECT * from word_indices where word like ? or word_en like ? order by len, word_en limit 10",[$key."%",$key."%"]); return $this->ok(['rows'=>$result,'count'=>count($result)]); break; default: return $this->error('view error'); break; } } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { // } /** * Display the specified resource. * * @param \App\Models\WordIndex $wordIndex * @return \Illuminate\Http\Response */ public function show(WordIndex $wordIndex) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Models\WordIndex $wordIndex * @return \Illuminate\Http\Response */ public function update(Request $request, WordIndex $wordIndex) { // } /** * Remove the specified resource from storage. * * @param \App\Models\WordIndex $wordIndex * @return \Illuminate\Http\Response */ public function destroy(WordIndex $wordIndex) { // } }