Coder Social home page Coder Social logo

cache's Introduction

需要了解的知识

1.三层数据结构
2.orm

1.建立新的域名 指向app-web

#nginx:

server {
        listen       80;
        server_name cache.qiushi.dev.reco.cn;
        index index.html index.htm index.php;
        root  /Users/www/cache/app-web;
        rewrite . /index.php;
        location ~ .*\.(php|php5)?$ {
            fastcgi_pass   unix:/tmp/php-cgi.sock;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
}

#apache: apache需要打开rewrite模块

<VirtualHost *:80>
    DocumentRoot /var/www/music/app-web
    ServerName cache.qiushi.dev.reco.cn
    <Location />
        AddDefaultCharset utf-8
        RewriteEngine on
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule . index.php [L,QSA]
    </Location>
</VirtualHost>

2.php安装memcache扩展

3.入口controller app-web/controller/web/index.php

4.尝试访问

domain.com/?action=get_one
domain.com/?action=get_list
domain.com/?action=update

5.数据库和memcache配置文件

config/common.php
config/database.php

6.最好用自己数据库和memcache

7.数据库的话 reco_music->album->{album_id,desc}

cache's People

Contributors

suxianbaozi avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.