?> ¿Para qué sirve el parámetro `lifetime`?... - Aide
QUESTION / RÉPONSE

¿Para qué sirve el parámetro `lifetime`?

0 consultations

Réponse

El parámetro `lifetime` especifica el número de segundos que una tabla se mantiene en memoria después de su último acceso. Si la tabla no se accede durante este período, se elimina automáticamente de la memoria.
Action technique liée

Voir la documentation de alterTable

Voir l'Action

Voir aussi

addTable
table

The addTable action is a fundamental mechanism for transferring data from a client-side process to the CAS server, creating an in-memory table. Unlike actions like loadTable which load data from server-side sources, addTable is specifically used by client libraries (SAS SWAT for Python, R, Lua) to upload data structures (e.g., Pandas DataFrames, R data frames) directly into a CAS table. It provides detailed control over the resulting table's properties, such as column types, lengths, labels, and memory layout.

addCaslib
table

Adds a new caslib to enable access to a data source. A caslib is an in-memory space to hold tables, access control lists, and data source information. Caslibs provide a way to organize in-memory tables and to manage access to data. All data is available to CAS through caslibs, and all operations in CAS that use tables are performed with caslibs.

append
table

Fügt die Zeilen einer Quelltabelle an eine Zieltabelle an. Diese Aktion ist nützlich, um Daten aus zwei oder mehr Tabellen zu konsolidieren. Eine wichtige Voraussetzung ist, dass die Zieltabelle eine In-Memory-Tabelle sein muss. Die Spalten in der Quell- und Zieltabelle müssen nicht identisch sein; die Aktion hängt Daten basierend auf übereinstimmenden Spaltennamen an.