1234567891011121314151617181920212223242526 |
- <?php
- use Illuminate\Support\Facades\Route;
- use Illuminate\Support\Facades\Redis;
- /*
- |--------------------------------------------------------------------------
- | Web Routes
- |--------------------------------------------------------------------------
- |
- | Here is where you can register web routes for your application. These
- | routes are loaded by the RouteServiceProvider within a group which
- | contains the "web" middleware group. Now create something great!
- |
- */
- Route::get('/', function () {
- return view('welcome');
- });
- Route::get('/connection', function () {
- dd(\Illuminate\Support\Facades\Redis::connection());
- });
- Route::get('/site_visits', function () {
- return '网站全局访问量:' . \Illuminate\Support\Facades\Redis::get('site_total_visits');
- });
|