Is cakephp scalable? About 10,000 people “accessing” the web application.
short answer: yes
longer answer: php due to how the request is processed is scalable but you also have to scale sessions, databases, possibly assets and maybe more depending on your application
Does cakephp support any database other than relational?
Yes, very scalable. With the Caveat that how scalable your end application is is more dependant on how you code your application and apply best practises.
There was another doubt in my research, which would be if cakePhp accepts “polyglot persistence”, the possibility of using more than one type of database (relational and no-SQL for example).
Would you also like to know if the API’s only log in to the social network, or does it also “capture” the user’s basic data?
I know there are lots of questions, but do you guys use the cake any longer, could you name some “pros and cons” of using the cake?
There was another doubt in my research, which would be if cakePhp accepts “polyglot persistence”, the possibility of using more than one type of database (relational and no-SQL for example).
you may use multiple connections inside your app and tell cake which table uses which Table Objects - 3.10
Would you also like to know if the API’s only log in to the social network, or does it also “capture” the user’s basic data?
I know there are lots of questions, but do you guys use the cake any longer, could you name some “pros and cons” of using the cake?
for cons i can only say that it takes a while to get comfortable with how to do things properly in cake but after it its quite pleasant to work with cake