-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
打算重构两个东西~ #98
Comments
在目前代码可用的情况下,建议把更多的精力放在新版本上,有时间一起商量下吧~ @JeldorPKU |
|
@huxuan 我觉得如果新版本还用 php 就不如在现有版本上改了,如果不用 php 我同意直接重构 |
@wangxd18 关于2暴露给用户的 url 没变,rewrite 之后的url都会很乱的 |
@zhzhzoo 按照目前的形式,新版本最有可能用的语言是python…… |
@huxuan 啊那还是用 MySQL 咩~还是nosql之类的东西。。。 |
@zhzhzoo 没必要用NoSQL吧~没想到用NoSQL有什么好处 |
@huxuan 懒得用 MySQL 呃。。。 |
啊就是感觉无模式的话改的时候好改一些 |
还是设计好了尽量少动数据库为好,MongoDB占用内存比较多,我担心小vps可能hold不住。 |
尤其我们现在还是合租…… |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
嗯关于论坛的架构,我想重构两个东西,因为如果真的这么做的话改动会比较大,所以来讨论一下~
client.php
和mainfunc.php
HTTP 请求jiekouapi.php
,我想改成前两个直接 includejiekouapi.php
调用里面的函数,这样就免去了 HTTP 请求开销,代价是无法把 bbs 分到两个主机上;index.php
。想把所有对bbs/xxx/
的请求 rewrite 到bbs/index.php?path=bbs/xxx/
去,然后bbs/index.php
再去调用对应的bbs/xxx/index.php
里的功能。这样好处是有共同的__DIR__
和全局设置,坏处是得设一下 rewrite。The text was updated successfully, but these errors were encountered: