-
New Feature
-
Resolution: Done
-
Normal
-
None
-
None
-
Security Level: Jimmy
-
None
User Story
As an application developer, I want to clone a Book object so that I can create multiple Book objects with the same content efficiently (more efficiently than importing the same file multiple times)
An example application architecture:
dispatch multiple requests to multiple Book objects like a load balancer
Acceptance Criteria
Book.clone() returns another Book object, and I can assign the cloned Book to a spreadsheet, or I can access its cells without affecting the source Book.
Details
- importing the same xlsx file can be an alternative but if the xlsx file is big, importing is less efficient.