• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Application Scalability – Design Pattern

 
Ranch Hand
Posts: 118
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

What is/are the design pattern to be used for application scalability? Example, I am having a movie booking application, and which supports 2 different languages (English, French). Now I would like to introduce a new movie language (Arabic).

Just to introduce one new language I don’t want to touch the application (should not do major changes).

What is the design pattern should be used to handle this kind of enhancement?

Regards,

Sankar. S
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Design pattern? Just create a new resource file with the Arabic messages in it.

This isn't "application scalability", by the way--that means the ability to handle larger loads, more data, etc.
 
reply
    Bookmark Topic Watch Topic
  • New Topic