Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
automvc committed May 10, 2019
1 parent ed2494e commit acf75bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
    作为程序员或开发人员的你,还记得开发javaweb系统,是如何写mvc的程序了吗? 当操作一个DB表时,要写一份dao;当两个表时,就要写两份dao;当n个表时,就要写n份dao。其实这样开发,实际是做了许多重复、类似的工作。当有人告诉你,很多情况下,你其实只用写一个dao,有何感想?     

    在以前的年代里,我们写了实在是太多的冤枉代码,以致消耗了我们不少的青春。以上举的例子,只是我们工作中的一部分,除了mvc,orm,还有html,我们也是写了许多没必要的代码。学过数据结构都知道,时间复杂度是O(1)的代码,会比是O(n)的代码,快n倍;但我们是否意识到编码复杂度是O(n)的程序比编码复杂度是O(1)的多写了多少代码吗? n可是一个会膨胀的量呀,想想都后怕。
    花上10分钟,去了解下 "**编码复杂度**" 的概念吧, 还有第一个实现 编码复杂度是O(1)的ORM框架-**Bee**。相信你这10分钟,不会白花,你完成软件的工作效率不提升n倍,也有0.8n。  **[Bee的编码复杂度为O(1)](https://github.com/automvc/bee)**,即用了**Bee**,你可以不用另外写dao代码。
    花上10分钟,去了解下 "**编码复杂度**" 的概念吧, 还有第一个实现 编码复杂度是O(1)的ORM框架-**[Bee](https://github.com/automvc/bee)**。相信你这10分钟,不会白花,你完成软件的工作效率不提升n倍,也有0.8n。  **Bee的编码复杂度为O(1)**,即用了**[Bee](https://github.com/automvc/bee)**,你可以不用另外写dao代码。

**Bee** 网址:
https://github.com/automvc/bee
Expand Down

0 comments on commit acf75bb

Please sign in to comment.