VisualforcePage

VFPage 제약

으농농이 2024. 5. 13. 13:46

 

VisualforcePage heapsize 제한은 아래와 같다 

single page 저장을 위해 1MB ( 1,000,000 자 )

 

LWC 나 AURA 같은경우는 html 이나 js 글자수에 제약이 있다  

한 컴포넌트 당  131,072 bytes 로 글자수 제약이 생긴다 

1글자당 2bytes 65,536 글자로 제약된다.

따라서 개발건이 나오면 대략적인 개발공수를 파악하고 어떤언어로 개발할지 파악을 우선적으로 

해야한다.  

VFPage는 위에서 언급한대로 다른 언어보다 heapsize 제약이 적다 

1번의 싱크로 처리해야하는 페이지를 개발해야한다고하면 vfpage 로 개발해야한다. 

 

1. 페이지 이름 길이 : 40자

2. 소스코드길이 : 1 000,000자

 

힙사이즈 관련 참고 URL 

: https://developer.salesforce.com/docs/atlas.en-us.apexref.meta/apexref/apex_methods_system_limits.htm#apex_System_Limits_getHeapSize

 

Limits Class | Apex Reference Guide | Salesforce Developers

Returns the total number of records that can be processed with any statement that counts against DML limits, such as DML statements, the database.EmptyRecycleBin method, and other methods. Signature public static Integer getLimitDMLRows()

developer.salesforce.com

 

VisualforcePage URL

:https://help.salesforce.com/s/articleView?id=sf.pages_limits.htm&language=en_US&type=5

'VisualforcePage' 카테고리의 다른 글

VFP 장,단점  (0) 2023.11.28