Saturday, February 28, 2015

Quick Overview of Spring ‘15 Features for Developers

Salesforce Search Infrastructure

Salesforce Search Infrastructure has changed from bigram tokenisation to morphological tokenisationRead more...

Flexible Pages have been renamed Lightning Pages

Flexible Pages have been renamed Lightning Pages throughout the Salesforce documentation and user interface. They are still known as FlexiPages in the API, however. Read more…

Deploy 10,000 components / files

You can now deploy 10,000 files at a time. Read more...

Long-running Asynchronous Callouts requests from a Visualforce page

Long-running Asynchronous Callouts requests from a Visualforce page to an external Web serviceRead more...

Submit up to 100 batch jobs simultaneously


Chain Jobs (unlimited number of times) with Queueable Apex


Size of callout request or response

The size of callout request or response (HTTP request or Web services call) has increased from 3 MB to 6 MB (for synchronous) and 12 MB (for asynchronous)Read more…

New annotation @testSetup for Test Classes


New classes for Address and Location

With Spring ‘15, you can now query compound fields and their components using the new Address and Location class methods. Read more… 

Geolocation fields are now queryable in Apex

Geolocation fields are now queryable in Apex. However, their locations are editable in Apex only as components of the compound field. Read and set geolocation field components by appending “__latitude__s” or “__longitude__s” to the field name, instead of the usual “__c.” For example:
Double theLatitude = myObject__c.aLocation__latitude__s;
myObject__c.aLocation__longitude__s = theLongitude;