Is there an equivalent of DynamoDB on Azure as a PHP session Handler



PHP Snippet 1:

session.save_path = "tcp://mycache.redis.cache.windows.net:6379?auth=<url encoded primary or secondary key here>";

PHP Snippet 2:

const session = require('express-session');
const AzureTablesStoreFactory = require('connect-azuretables')(session);

const app = express();

const options = { table: 'sessions', sessionTimeOut: 30}; 
app.use(session({ 
  store: AzureTablesStoreFactory.create(options), 
  secret: process.env.SESSION_SECRET,
  resave: false,
  saveUninitialized: false,
  rolling: true,
  cookie: {maxAge: 600000}
}));