Nueva publicación

Encontrar

Anuncio
· 15 ene, 2025

InterSystems Ideas News #18

Hi Developers!

Welcome to Issue #18 of the InterSystems Ideas newsletter! This edition highlights the latest implemented ideas:

✓ Ideas brought to life during the "Bringing Ideas to Reality" programming contest
✓ Ideas implemented by InterSystems in Q4 2024
New article featuring an idea realized by the talented Musketeers team

 
 During the programming contest "Bringing Ideas to RealityDeveloper Community members implemented 14 ideas

👏 Many thanks to the implementors and authors of these ideas👏


👏 Thanks to all the InterSystems developers who contributed to making these ideas a reality. 👏
 

         To wrap up this bulletin, check out an article, Implemented ideas: Add a project that helps to generate unittests for an ObjectScript class, showcasing the solution developed by the talented Musketeers team (@Henrique Dias, @Henry Pereira, @José Pereira). Thank you to the team for turning this idea into reality and sharing their insights in the article!


✨ Share your ideas, support your favorites with comments and votes, and bring to life the ones you believe matter most to the Developer Community! 🙏

1 Comentario
Comentarios (1)1
Inicie sesión o regístrese para continuar
Anuncio
· 15 ene, 2025

[Video] Aproveitando ferramentas de automação para implementar aplicativos InterSystems IRIS

Olá Comunidade,

Aproveite o novo vídeo no InterSystems Developers YouTube:

⏯ Leveraging Automation Tools for Deploying InterSystems IRIS Applications @ Global Summit 2024

Automatizar o gerenciamento de configuração, a implantação de aplicativos e tarefas de rotina reduz erros e economiza tempo. Esta sessão destaca tarefas típicas de configuração e implantação do sistema InterSystems IRIS e como ferramentas de código aberto podem automatizá-las. O Ansible será usado como o exemplo principal, e mostraremos como misturar e combinar ferramentas para tornar suas implantações de aplicativos InterSystems IRIS bem-sucedidas.

 Apresentadores
🗣 @Murray Oldfield, Principal Technology Architect, InterSystems
🗣 @Mark Bolinsky, Chief Technology Architect, InterSystems

Assista agora e diga-nos o que você achou — boa visualização! 👍

Comentarios (0)1
Inicie sesión o regístrese para continuar
Pregunta
· 15 ene, 2025

how i can connect to cache database from visual studio 2017-2022?

how i can  connect to cache database from visual studio 2017-2022?

 

TQ 

6 comentarios
Comentarios (6)4
Inicie sesión o regístrese para continuar
Pregunta
· 15 ene, 2025

Where and How can i see the Stream that contains the response back to the client of a CSP application

Hey, So the title pretty much describes the question:
Where and How can i see the Stream that contains the response back to the client of a CSP application.

When the request is being processed and finished we return a response to the client - We do that by writing the data to a stream and that stream is sent back to the client.
I wanted to know how i can access the point right before that Data is actually written to the client back (meaning the place where the response is actually being send back, the last point of contact).
And was not able to find about it in the DOCS so would love to get a reference to it if you know where.

9 comentarios
Comentarios (9)2
Inicie sesión o regístrese para continuar
Artículo
· 15 ene, 2025 Lectura de 1 min

Effacer les classes supprimées après l'importation

Lorsque vous déployez du code à partir d'un dépôt, la suppression de classe (fichier) peut ne pas être reflétée par votre système CI/CD.
Voici une simple ligne de commande pour supprimer automatiquement toutes les classes d'un package spécifié qui n'ont pas été importées. Elle peut être facilement ajustée pour une variété de tâches annexes :

set packages = "USER.*,MyCustomPackage.*"
set dir = "C:\InterSystems\src\"
set sc = $SYSTEM.OBJ.LoadDir(dir,"ck", .err, 1, .loaded)
set sc = $SYSTEM.OBJ.Delete(packages _ ",'" _ $LTS($LI($LFS(loaded_",",".cls,"), 1, *-1), ",'"),, .err2)

La première commande compile les classes et renvoie également une liste des classes chargées. La deuxième commande supprime toutes les classes des packages spécifiés, à l'exception des classes chargées juste avant.

Comentarios (0)1
Inicie sesión o regístrese para continuar