vote up 4 vote down star
1

We're currently looking at using the Force.com platform as our development platform and the sales guys and the force.com website are full of reasons why it's the best platform in the world. What I'm looking for tho, is some real disadvantages to using such a platform.

flag

1 Answer

vote up 5 vote down check

Here are 10 to get you started.

  1. Apex is a proprietary language. Other than the foce.com Eclipse plugin, there's little to no tooling available such as refactoring, code analysis, etc.
  2. Apex was modeled on Java 5, which is considered to be lagging behind other languages, and without tooling (see #1), can be quite cumbersome.
  3. Deployment is still fairly manual with lots of gotchas and manual steps. This situation is slowly improving over time, but you'll be disappointed if you're used to having automated deployments.
  4. Apex lacks packages/namespaces. All of your classes, interfaces, etc. live in one folder on the server. This makes code much less organized and class/interface names necessarily long to avoid name clashes and to provide context. This is one of my biggest complaints, and I would not freely choose to build on force.com for this reason alone.
  5. The "force.com IDE", aka force.com eclipse plugin, is incredibly slow. Saving any file, whether it be a class file, text file, etc., usually takes at least 5 seconds and sometimes up to 30 seconds depending on how many objects, data types, class files, etc. are in your org. Saving is also a blocking action, requiring not only compilation, but a full sync of your local project with the server. Orders of magnitude slower than Java or .NET.
  6. The online developer community does not seem very healthy. I've noticed lots of forum posts go unanswered or unsolved. I think this may have something to do with the forum software salesforce.com uses, which seems to suck pretty hard.
  7. The data access DSL in Apex leaves a lot to be desired. It's not even remotely competitive with the likes of (N)Hibernate, JPA, etc.
  8. Developing an app on Apex/VisualForce is an exercise in governor limits engineering. Easily half of programmer time is spent trying to optimize to avoid the numerous governor limits and other gotchas like visualforce view state limits. It could be argued that if you write efficient code to begin with you won't have this problem, which is true to an extent. However there are many times that you have valid reasons to make more than x queries in a session, or loop through more than x records, etc.
  9. The save->compile->run cycle is extremely slow, esp. when it involves zipping and uploading the entire static resource bundle just to do something like test a minor css or javascript change.
  10. In general, the pain of a young, fledgling platform without the benefits of it being open source. You have no way to validate and/or fix bugs in the platform. They say to post it to their IdeaExchange. Yeah, good luck with that.

Disclaimers/Disclosures: There are lots of benefits to a hosted platform such as force.com. Force.com does regularly enhance the platform. There are plenty of things about it I like. I make money building on force.com

link|flag
That's a great list you've got there – lomaxx Nov 3 at 22:29
I'd love force.com if they did managed site hosting and I could get my data, not just the extras, or through some API, but a nightly incr. backup of my Oracle dataset. Do the salesforce guys offer this? I've never been able to get a straight answer out of their sales guys, which I always take as a no. – Chris Kaminski Nov 3 at 22:52
They don't give you such "raw" access to your data. There is a backup service that gives you zipped CSVs of your org on a regular basis. There's also a replication api that allows you to keep your own side by side backup in pseudo real time. – Jeremy Ross Nov 3 at 23:55
@Jeremy out of curiousity... how much time do you spend in the eclipse ide plugin vs just setting things up in the "setup" menu's within a salesforce application? – lomaxx Nov 3 at 23:59
I personally spend 90% of my time in either eclipse or a text editor (TextMate, in my case). But that's because someone else usually does a lot of the basic data configuration. The configuration of custom objects and fields is done in salesforce.com, not code, because there is no DDL in the force.com world. There is a metadata api, but I never use it during data design. – Jeremy Ross Nov 4 at 0:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.