Is google app engine's ndb safe to use? [closed] - google-app-engine

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Is it pretty stable or am I going to risk having to rewrite code if I use it because it might change in the future?

It is stable and fully supported.
snippet from the 1.6.4 sdk release
- NDB for Python - The NDB API has graduated from experimental and is now a fully
supported feature. This next-generation datastore API improves data modeling
and querying and has been built from the ground up to support an asynchronous
computing model.

Related

Creating a simple HTTP proxy in C [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm a newbie programmer looking to create a simple proxy in C that forwards HTTP requests (through TCP). Are there any resources online that can get me started? I've already looked at "Beej's Guide to Network Programming" as it came highly recommended, but I find it to be a little incomplete and hard to follow. Any suggestion would be appreciated!
Why reinventing the wheel?
There is tinyproxy that is fully featured, opensource and free.
https://banu.com/tinyproxy/

Which NoSQL database fits best for the following purpose? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am now struggling to find a best database for the following purpose:
1. Store the online data every 0.1 second!
2. Easy to access the data in the database
3. Compatible for windows system
4. No need to be OpenSource Solution
Any suggestions?
Well there is alot of nosql db systems, most simplest for me are redis and mongodb.
I use redis for highload apps, and mongodb for easier access to data (if you came from sql world). Both have windows versions, both open sourced.

Will using plugins slow down a CakePHP 2.0 app performance drastically? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Will using plugins like the one for Facebook connect by Webtechnick slow down performance drastically? If not, what will be the extent of damage to the speed of the application?
Like Oldskool said - it depends on the plugins you are including.
I can tell you from experience, that webtechnicks Facebook plugin does not create an excessive burden on the application.
However, other plugins that you may be including, might. Depending on how they hook in to your application, and what kinds of processing/queries are being executed, will all add up.
I would suggest installing the CakePHP DebugKit to analyze the performance of your application at a relatively high level. It gives you quite a bit of information, so check it out.
Hope this helps.

Any library that helps build a clustered, distributed, event bus library? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Is there any Java library that allows to build a clustered (thus, distributed) event bus?
I'm not talking about relying to external pub/sub services like ZeroMQ/RabbitMQ/Redis, but a Java library that does all that internally (that is, keeping the connections to the other machines, synchronizing data and managing downtimes, etc).
Thanks
I suggest checking out the Akka middleware project - it uses the Actor model for designing concurrent/distributed systems. It is designed for Scala but provides a nice Java API.

Recommend a free, universal database browser? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
This can be community wiki.
I'm looking for a simple, multi-platform, free database browser (ODBC,etc). This is for those times when I want to interface with a database, and just need a simple way to quickly see what the heck is in it. Doesn't need to support any vendor-specific features.
Too much junk out there and I don't want to play with these things all day. What do you use?
I like SqlDbx - the personal edition is free. It supports most of the major databases, and the built in intellisense is useful for queries.
Dbvisualizer has a free version http://www.dbvis.com/products/dbvis/download/

Resources